mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
* src/odbc/mysql.sql: Fix database creation script.
SVN Revision: 675
This commit is contained in:
parent
d571a564d3
commit
37061880dc
@ -42,7 +42,7 @@ CREATE INDEX pk_rosterg_user_jid ON rostergroups(username(75), jid(75));
|
||||
CREATE TABLE spool (
|
||||
username varchar(250) NOT NULL,
|
||||
xml text,
|
||||
seq INTEGER UNSIGNED NOT NULL AUTO_INCREMENT
|
||||
seq BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE
|
||||
) CHARACTER SET utf8;
|
||||
|
||||
CREATE INDEX i_despool USING BTREE ON spool(username);
|
||||
@ -100,7 +100,7 @@ CREATE TABLE private_storage (
|
||||
) CHARACTER SET utf8;
|
||||
|
||||
CREATE INDEX i_private_storage_username USING BTREE ON private_storage(username);
|
||||
CREATE UNIQUE INDEX i_private_storage_username_namespace USING BTREE ON private_storage(username, namespace);
|
||||
CREATE UNIQUE INDEX i_private_storage_username_namespace USING BTREE ON private_storage(username(75), namespace(75));
|
||||
|
||||
--- To update from 1.x:
|
||||
-- ALTER TABLE rosterusers ADD COLUMN askmessage text AFTER ask;
|
||||
|
Loading…
Reference in New Issue
Block a user