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