mirror of
https://github.com/processone/ejabberd
synced 2025-10-04 02:09:33 +02:00
8 lines
206 B
SQL
8 lines
206 B
SQL
CREATE TABLE last (
|
|
username text NOT NULL,
|
|
server_host text NOT NULL,
|
|
seconds text NOT NULL,
|
|
state text NOT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX i_last_sh_username ON last (server_host, username);
|