lychee/php/database/albums_table.sql

14 lines
513 B
MySQL
Raw Normal View History

2014-04-05 16:30:24 +00:00
# Dump of table lychee_albums
# Version 2.5
# ------------------------------------------------------------
CREATE TABLE IF NOT EXISTS `lychee_albums` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) NOT NULL,
`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',
`password` varchar(100) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;