mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
12 lines
372 B
SQL
12 lines
372 B
SQL
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);
|