mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-26 16:26:24 +01:00
11 lines
338 B
SQL
11 lines
338 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,
|
|
PRIMARY KEY (server_host, username)
|
|
);
|