MT#5073 Add the statement of the prosody table creation.

This is needed in order to not break the replication in the upgrade
process from 2.8 to 3.0.
vseva/8117
Victor Seva 11 years ago
parent 53ba665083
commit 1083b39a8c

@ -8,3 +8,13 @@ GRANT SELECT ON provisioning.voip_dom_preferences TO prosody@localhost;
GRANT SELECT ON kamailio.dbaliases TO prosody@localhost;
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))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Loading…
Cancel
Save