Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mod_last.sql « pgsql « sql - github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85922e5973cab1d0fdf59be186d7eb38db93eb1c (plain)
1
2
3
4
5
6
7
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)
);