mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
11 lines
402 B
SQL
11 lines
402 B
SQL
CREATE TABLE private_storage (
|
|
username text NOT NULL,
|
|
server_host text NOT NULL,
|
|
namespace text NOT NULL,
|
|
data text NOT NULL,
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE UNIQUE INDEX i_server_host_username_namespace ON private_storage (server_host, username, namespace);
|
|
CREATE INDEX i_private_storage_sh_username ON private_storage (server_host, username);
|