Fix MySQL shema (contacts) (#30)

This commit is contained in:
RainLoop Team 2013-12-14 15:39:07 +04:00
parent dcc486a114
commit a158929afd
2 changed files with 3 additions and 3 deletions

View file

@ -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",

View file

@ -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;