1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-04 02:09:33 +02:00
ejabberd/sql/pgsql/mod_last.sql
2018-07-19 10:24:19 +03:00

7 lines
174 B
SQL

CREATE TABLE last (
username text NOT NULL,
server_host text NOT NULL,
seconds text NOT NULL,
state text NOT NULL,
PRIMARY KEY (server_host, username)
);