mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-04 21:20:53 +08:00
Fix MySQL shema (contacts) (#30)
This commit is contained in:
parent
dcc486a114
commit
a158929afd
2 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
"name": "RainLoop",
|
"name": "RainLoop",
|
||||||
"title": "RainLoop Webmail",
|
"title": "RainLoop Webmail",
|
||||||
"version": "1.5.1",
|
"version": "1.5.1",
|
||||||
"release": "546",
|
"release": "547",
|
||||||
"description": "Simple, modern & fast web-based email client",
|
"description": "Simple, modern & fast web-based email client",
|
||||||
"homepage": "http://rainloop.net",
|
"homepage": "http://rainloop.net",
|
||||||
"main": "Gruntfile.js",
|
"main": "Gruntfile.js",
|
||||||
|
|
|
@ -849,7 +849,7 @@ CREATE TABLE IF NOT EXISTS rainloop_pab_tags (
|
||||||
|
|
||||||
)/*!40000 ENGINE=INNODB *//*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
|
)/*!40000 ENGINE=INNODB *//*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
|
||||||
|
|
||||||
'CREATE TABLE IF NOT EXISTS rainloop_pab_tags_contacts (
|
CREATE TABLE IF NOT EXISTS rainloop_pab_tags_contacts (
|
||||||
|
|
||||||
id_tag int UNSIGNED NOT NULL,
|
id_tag int UNSIGNED NOT NULL,
|
||||||
id_contact bigint UNSIGNED NOT NULL,
|
id_contact bigint UNSIGNED NOT NULL,
|
||||||
|
@ -857,7 +857,7 @@ CREATE TABLE IF NOT EXISTS rainloop_pab_tags (
|
||||||
INDEX id_tag_rainloop_pab_tags_contacts_index (id_tag),
|
INDEX id_tag_rainloop_pab_tags_contacts_index (id_tag),
|
||||||
INDEX id_contact_rainloop_pab_tags_contacts_index (id_contact)
|
INDEX id_contact_rainloop_pab_tags_contacts_index (id_contact)
|
||||||
|
|
||||||
)/*!40000 ENGINE=INNODB *//*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
|
)/*!40000 ENGINE=INNODB */;
|
||||||
MYSQLINITIAL;
|
MYSQLINITIAL;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue