MT#5073 Add the statement of the prosody table creation. fix 1083b39a8c

I don't know how this version of the patch got here. We really need Gerrit!
vseva/8117
Victor Seva 12 years ago
parent 8ecd8fb1ad
commit e6ca2a59db

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

Loading…
Cancel
Save