aboutsummaryrefslogtreecommitdiff
path: root/sql/sqlite/mod_bosh.sql
blob: 608cef79bf6d7149bb6439f240acf74b42abdfd2 (plain) (blame)
1
2
3
4
5
6
7
CREATE TABLE bosh (
    sid text NOT NULL,
    node text NOT NULL,
    pid text NOT NULL
);

CREATE UNIQUE INDEX i_bosh_sid ON bosh(sid);