From e6ca2a59dbef654d613cf8ee5dccf446fd51e7b7 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Thu, 26 Jun 2014 08:10:20 +0200 Subject: [PATCH] MT#5073 Add the statement of the prosody table creation. fix 1083b39a8c9 I don't know how this version of the patch got here. We really need Gerrit! --- db_scripts/diff/13840_not_replicated.up | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/db_scripts/diff/13840_not_replicated.up b/db_scripts/diff/13840_not_replicated.up index a61e962f..3e127754 100644 --- a/db_scripts/diff/13840_not_replicated.up +++ b/db_scripts/diff/13840_not_replicated.up @@ -10,11 +10,11 @@ GRANT SELECT ON kamailio.subscriber TO prosody@localhost; GRANT SELECT ON kamailio.domain TO prosody@localhost; CREATE TABLE prosody.prosody ( - host text, - user text, - store text, - key text, - type text, - value mediumtext, - KEY prosody_index (host(20),user(20),store(20),key(20)) + `host` text, + `user` text, + `store` text, + `key` text, + `type` text, + `value` mediumtext, + KEY `prosody_index` (`host`(20),`user`(20),`store`(20),`key`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;