Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mod_bosh.sql « sqlite « sql - github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 608cef79bf6d7149bb6439f240acf74b42abdfd2 (plain)
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);