lychee/php/database/albums_table.sql

14 lines
539 B
MySQL
Raw Normal View History

2014-04-05 16:30:24 +00:00
# Dump of table lychee_albums
# ------------------------------------------------------------
CREATE TABLE IF NOT EXISTS `?` (
`id` bigint(14) NOT NULL,
`title` varchar(100) NOT NULL DEFAULT '',
2014-04-05 16:30:24 +00:00
`description` varchar(1000) DEFAULT '',
2014-04-11 22:38:34 +00:00
`sysstamp` int(11) NOT NULL,
2014-04-05 16:30:24 +00:00
`public` tinyint(1) NOT NULL DEFAULT '0',
`visible` tinyint(1) NOT NULL DEFAULT '1',
`downloadable` tinyint(1) NOT NULL DEFAULT '0',
`password` varchar(100) DEFAULT NULL,
2014-04-05 16:30:24 +00:00
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;