summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.4/postgresql/patch/slideshows.sql
blob: 8021634ad58b4cbde7bd19e42c9b8850ca35019f (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)
) with OIDS;