aboutsummaryrefslogtreecommitdiff
path: root/sql/pgsql/mod_offline.sql
blob: 7fb6fea07ce92254d43d66dadd10e1f88cbf5e61 (plain) (blame)
1
2
3
4
5
6
7
8
9
CREATE TABLE spool (
    username text NOT NULL,
    server_host text NOT NULL,
    xml text NOT NULL,
    seq SERIAL,
    created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);

CREATE INDEX i_spool_sh_username ON spool (server_host, username);