summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.4/postgresql/patch/slideshows.sql
blob: ad806da0ebdb077b52a58fc8905b0eb4ae802010 (plain)
1
2
3
4
5
6
CREATE TABLE slideshows (
        slideshowid     bigint DEFAULT '0'     NOT NULL,
        name            varchar(255)            DEFAULT ''      NOT NULL,
        delay           integer         DEFAULT '0'     NOT NULL,
        PRIMARY KEY (slideshowid)
);