mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
* src/odbc/mysql: Database creation script should now be compliant with
MySQL 4.0.x. SVN Revision: 673
This commit is contained in:
parent
97dd63eb7a
commit
65fcd921b5
@ -6,6 +6,9 @@
|
|||||||
* src/odbc/mysql.sql: Likewise.
|
* src/odbc/mysql.sql: Likewise.
|
||||||
* src/odbc/mssql.sql: Likewise.
|
* src/odbc/mssql.sql: Likewise.
|
||||||
|
|
||||||
|
* src/odbc/mysql: Database creation script should now be compliant with
|
||||||
|
MySQL 4.0.x.
|
||||||
|
|
||||||
2006-10-29 Mickael Remond <mickael.remond@process-one.net>
|
2006-10-29 Mickael Remond <mickael.remond@process-one.net>
|
||||||
|
|
||||||
* doc/guide.tex: XEP-0065 proxy documentation (thanks to Evgeniy
|
* doc/guide.tex: XEP-0065 proxy documentation (thanks to Evgeniy
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
-- Needs MySQL (at least 4.1.x) with innodb back-end
|
-- Needs MySQL (at least 4.0.x) with innodb back-end
|
||||||
SET table_type=InnoDB;
|
SET table_type=InnoDB;
|
||||||
|
|
||||||
CREATE TABLE users (
|
CREATE TABLE users (
|
||||||
@ -26,9 +26,9 @@ CREATE TABLE rosterusers (
|
|||||||
type text
|
type text
|
||||||
) CHARACTER SET utf8;
|
) CHARACTER SET utf8;
|
||||||
|
|
||||||
CREATE UNIQUE INDEX i_rosteru_user_jid USING HASH ON rosterusers(username(75), jid(75));
|
CREATE UNIQUE INDEX i_rosteru_user_jid ON rosterusers(username(75), jid(75));
|
||||||
CREATE INDEX i_rosteru_username USING HASH ON rosterusers(username);
|
CREATE INDEX i_rosteru_username ON rosterusers(username);
|
||||||
CREATE INDEX i_rosteru_jid USING HASH ON rosterusers(jid);
|
CREATE INDEX i_rosteru_jid ON rosterusers(jid);
|
||||||
|
|
||||||
CREATE TABLE rostergroups (
|
CREATE TABLE rostergroups (
|
||||||
username varchar(250) NOT NULL,
|
username varchar(250) NOT NULL,
|
||||||
@ -36,13 +36,13 @@ CREATE TABLE rostergroups (
|
|||||||
grp text NOT NULL
|
grp text NOT NULL
|
||||||
) CHARACTER SET utf8;
|
) CHARACTER SET utf8;
|
||||||
|
|
||||||
CREATE INDEX pk_rosterg_user_jid USING HASH ON rostergroups(username(75), jid(75));
|
CREATE INDEX pk_rosterg_user_jid ON rostergroups(username(75), jid(75));
|
||||||
|
|
||||||
|
|
||||||
CREATE TABLE spool (
|
CREATE TABLE spool (
|
||||||
username varchar(250) NOT NULL,
|
username varchar(250) NOT NULL,
|
||||||
xml text,
|
xml text,
|
||||||
seq SERIAL
|
seq INTEGER UNSIGNED NOT NULL AUTO_INCREMENT
|
||||||
) CHARACTER SET utf8;
|
) CHARACTER SET utf8;
|
||||||
|
|
||||||
CREATE INDEX i_despool USING BTREE ON spool(username);
|
CREATE INDEX i_despool USING BTREE ON spool(username);
|
||||||
|
Loading…
Reference in New Issue
Block a user