24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-22 22:23:42 +02:00

Merge pull request #180 from hamano/mysql_table

added privacy_list_data index for mysql database.
This commit is contained in:
Evgeny Khramtsov 2014-05-07 20:57:59 +04:00
commit e88a5c6b3c

View File

@ -158,6 +158,7 @@ CREATE TABLE privacy_list_data (
match_presence_in boolean NOT NULL,
match_presence_out boolean NOT NULL
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_privacy_list_data_id ON privacy_list_data(id);
CREATE TABLE private_storage (
username varchar(250) NOT NULL,