2007-12-24 14:57:53 +01:00
|
|
|
--
|
2009-01-12 15:52:59 +01:00
|
|
|
-- ejabberd, Copyright (C) 2002-2009 ProcessOne
|
2007-12-24 14:57:53 +01:00
|
|
|
--
|
|
|
|
-- This program is free software; you can redistribute it and/or
|
|
|
|
-- modify it under the terms of the GNU General Public License as
|
|
|
|
-- published by the Free Software Foundation; either version 2 of the
|
|
|
|
-- License, or (at your option) any later version.
|
|
|
|
--
|
|
|
|
-- This program is distributed in the hope that it will be useful,
|
|
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
-- General Public License for more details.
|
|
|
|
--
|
|
|
|
-- You should have received a copy of the GNU General Public License
|
|
|
|
-- along with this program; if not, write to the Free Software
|
|
|
|
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
-- 02111-1307 USA
|
|
|
|
--
|
2004-12-14 00:00:12 +01:00
|
|
|
|
|
|
|
CREATE TABLE users (
|
2005-10-07 01:57:34 +02:00
|
|
|
username text PRIMARY KEY,
|
2004-12-14 00:00:12 +01:00
|
|
|
"password" text NOT NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE last (
|
2005-10-07 01:57:34 +02:00
|
|
|
username text PRIMARY KEY,
|
2004-12-14 00:00:12 +01:00
|
|
|
seconds text NOT NULL,
|
2007-02-19 15:19:27 +01:00
|
|
|
state text NOT NULL
|
2004-12-14 00:00:12 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE rosterusers (
|
|
|
|
username text NOT NULL,
|
|
|
|
jid text NOT NULL,
|
2007-07-09 19:22:09 +02:00
|
|
|
nick text NOT NULL,
|
2004-12-14 00:00:12 +01:00
|
|
|
subscription character(1) NOT NULL,
|
|
|
|
ask character(1) NOT NULL,
|
2006-11-04 17:38:05 +01:00
|
|
|
askmessage text NOT NULL,
|
2004-12-14 00:00:12 +01:00
|
|
|
server character(1) NOT NULL,
|
|
|
|
subscribe text,
|
|
|
|
"type" text
|
|
|
|
);
|
|
|
|
|
2005-10-07 01:57:34 +02:00
|
|
|
CREATE UNIQUE INDEX i_rosteru_user_jid ON rosterusers USING btree (username, jid);
|
|
|
|
CREATE INDEX i_rosteru_username ON rosterusers USING btree (username);
|
|
|
|
CREATE INDEX i_rosteru_jid ON rosterusers USING btree (jid);
|
2004-12-14 00:00:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE rostergroups (
|
|
|
|
username text NOT NULL,
|
|
|
|
jid text NOT NULL,
|
|
|
|
grp text NOT NULL
|
|
|
|
);
|
|
|
|
|
2005-10-07 01:57:34 +02:00
|
|
|
CREATE INDEX pk_rosterg_user_jid ON rostergroups USING btree (username, jid);
|
|
|
|
|
2004-12-14 00:00:12 +01:00
|
|
|
|
|
|
|
CREATE TABLE spool (
|
|
|
|
username text NOT NULL,
|
2007-09-28 15:33:27 +02:00
|
|
|
xml text NOT NULL,
|
2005-10-20 01:00:17 +02:00
|
|
|
seq SERIAL
|
2004-12-14 00:00:12 +01:00
|
|
|
);
|
|
|
|
|
2005-10-07 01:57:34 +02:00
|
|
|
CREATE INDEX i_despool ON spool USING btree (username);
|
2004-12-14 00:00:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE vcard (
|
2005-10-07 01:57:34 +02:00
|
|
|
username text PRIMARY KEY,
|
|
|
|
vcard text NOT NULL
|
2004-12-14 00:00:12 +01:00
|
|
|
);
|
|
|
|
|
2005-10-07 01:57:34 +02:00
|
|
|
CREATE TABLE vcard_search (
|
|
|
|
username text NOT NULL,
|
|
|
|
lusername text PRIMARY KEY,
|
|
|
|
fn text NOT NULL,
|
|
|
|
lfn text NOT NULL,
|
|
|
|
family text NOT NULL,
|
|
|
|
lfamily text NOT NULL,
|
|
|
|
given text NOT NULL,
|
|
|
|
lgiven text NOT NULL,
|
|
|
|
middle text NOT NULL,
|
|
|
|
lmiddle text NOT NULL,
|
|
|
|
nickname text NOT NULL,
|
|
|
|
lnickname text NOT NULL,
|
|
|
|
bday text NOT NULL,
|
|
|
|
lbday text NOT NULL,
|
|
|
|
ctry text NOT NULL,
|
|
|
|
lctry text NOT NULL,
|
|
|
|
locality text NOT NULL,
|
|
|
|
llocality text NOT NULL,
|
|
|
|
email text NOT NULL,
|
|
|
|
lemail text NOT NULL,
|
|
|
|
orgname text NOT NULL,
|
|
|
|
lorgname text NOT NULL,
|
|
|
|
orgunit text NOT NULL,
|
|
|
|
lorgunit text NOT NULL
|
|
|
|
);
|
2004-12-14 00:00:12 +01:00
|
|
|
|
2005-10-07 01:57:34 +02:00
|
|
|
CREATE INDEX i_vcard_search_lfn ON vcard_search(lfn);
|
|
|
|
CREATE INDEX i_vcard_search_lfamily ON vcard_search(lfamily);
|
|
|
|
CREATE INDEX i_vcard_search_lgiven ON vcard_search(lgiven);
|
|
|
|
CREATE INDEX i_vcard_search_lmiddle ON vcard_search(lmiddle);
|
|
|
|
CREATE INDEX i_vcard_search_lnickname ON vcard_search(lnickname);
|
|
|
|
CREATE INDEX i_vcard_search_lbday ON vcard_search(lbday);
|
|
|
|
CREATE INDEX i_vcard_search_lctry ON vcard_search(lctry);
|
|
|
|
CREATE INDEX i_vcard_search_llocality ON vcard_search(llocality);
|
|
|
|
CREATE INDEX i_vcard_search_lemail ON vcard_search(lemail);
|
|
|
|
CREATE INDEX i_vcard_search_lorgname ON vcard_search(lorgname);
|
|
|
|
CREATE INDEX i_vcard_search_lorgunit ON vcard_search(lorgunit);
|
2006-05-23 22:19:37 +02:00
|
|
|
|
2006-10-05 05:17:41 +02:00
|
|
|
CREATE TABLE privacy_default_list (
|
|
|
|
username text PRIMARY KEY,
|
|
|
|
name text NOT NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE TABLE privacy_list (
|
|
|
|
username text NOT NULL,
|
|
|
|
name text NOT NULL,
|
2006-10-09 22:32:41 +02:00
|
|
|
id SERIAL UNIQUE
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX i_privacy_list_username ON privacy_list USING btree (username);
|
|
|
|
CREATE UNIQUE INDEX i_privacy_list_username_name ON privacy_list USING btree (username, name);
|
|
|
|
|
|
|
|
CREATE TABLE privacy_list_data (
|
|
|
|
id bigint REFERENCES privacy_list(id) ON DELETE CASCADE,
|
|
|
|
t character(1) NOT NULL,
|
2006-10-05 05:17:41 +02:00
|
|
|
value text NOT NULL,
|
|
|
|
action character(1) NOT NULL,
|
|
|
|
ord NUMERIC NOT NULL,
|
|
|
|
match_all boolean NOT NULL,
|
|
|
|
match_iq boolean NOT NULL,
|
|
|
|
match_message boolean NOT NULL,
|
|
|
|
match_presence_in boolean NOT NULL,
|
|
|
|
match_presence_out boolean NOT NULL
|
|
|
|
);
|
|
|
|
|
2006-10-19 06:46:24 +02:00
|
|
|
CREATE TABLE private_storage (
|
|
|
|
username text NOT NULL,
|
|
|
|
namespace text NOT NULL,
|
|
|
|
data text NOT NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX i_private_storage_username ON private_storage USING btree (username);
|
|
|
|
CREATE UNIQUE INDEX i_private_storage_username_namespace ON private_storage USING btree (username, namespace);
|
2006-10-05 05:17:41 +02:00
|
|
|
|
|
|
|
|
2006-05-23 22:19:37 +02:00
|
|
|
--- To update from 0.9.8:
|
|
|
|
-- CREATE SEQUENCE spool_seq_seq;
|
|
|
|
-- ALTER TABLE spool ADD COLUMN seq integer;
|
|
|
|
-- ALTER TABLE spool ALTER COLUMN seq SET DEFAULT nextval('spool_seq_seq');
|
|
|
|
-- UPDATE spool SET seq = DEFAULT;
|
|
|
|
-- ALTER TABLE spool ALTER COLUMN seq SET NOT NULL;
|
|
|
|
|
|
|
|
--- To update from 1.x:
|
2006-05-26 02:00:32 +02:00
|
|
|
-- ALTER TABLE rosterusers ADD COLUMN askmessage text;
|
|
|
|
-- UPDATE rosterusers SET askmessage = '';
|
|
|
|
-- ALTER TABLE rosterusers ALTER COLUMN askmessage SET NOT NULL;
|