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

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