mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
7 lines
138 B
SQL
7 lines
138 B
SQL
CREATE TABLE bosh (
|
|
sid text NOT NULL,
|
|
node text NOT NULL,
|
|
pid text NOT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX i_bosh_sid ON bosh(sid);
|