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

ejabberd_auth.sql « sqlite « sql - github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f971eb9af8359c52058c0ec19a05e6bbb72f13d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
CREATE TABLE "users" (
    username text NOT NULL,
    server_host text NOT NULL,
    password text NOT NULL,
    serverkey text NOT NULL DEFAULT '',
    salt text NOT NULL DEFAULT '',
    iterationcount integer NOT NULL DEFAULT 0,
    created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);

CREATE UNIQUE INDEX i_users_sh_username ON "users" (server_host, username);