1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 09:49:18 +02:00

Added MySQL support for delete_old_messages (offline) command.

This commit is contained in:
Jerome Sautret 2015-03-13 18:29:57 +01:00 committed by Christophe Romain
parent 4d2924a3ef
commit 6b67a66a1b
2 changed files with 15 additions and 2 deletions

View file

@ -79,6 +79,7 @@ CREATE TABLE spool (
) ENGINE=InnoDB CHARACTER SET utf8;
CREATE INDEX i_despool USING BTREE ON spool(username);
CREATE INDEX i_spool_created_at USING BTREE ON spool(created_at);
CREATE TABLE vcard (
username varchar(250) PRIMARY KEY,