leftypol/templates/posts.sql

25 lines
868 B
MySQL
Raw Normal View History

2010-12-02 09:50:14 +00:00
CREATE TABLE IF NOT EXISTS `posts_{board}` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`thread` int(11) DEFAULT NULL,
`subject` varchar(40) NOT NULL,
2011-02-17 10:18:07 +00:00
`email` varchar(40) NOT NULL,
`name` varchar(40) NOT NULL,
2011-01-19 01:37:31 +00:00
`trip` varchar(45) DEFAULT NULL,
2010-12-02 09:50:14 +00:00
`body` text NOT NULL,
`time` int(11) NOT NULL,
`bump` int(11) DEFAULT NULL,
`thumb` varchar(50) DEFAULT NULL,
`thumbwidth` int(11) DEFAULT NULL,
`thumbheight` int(11) DEFAULT NULL,
`file` varchar(50) DEFAULT NULL,
`filewidth` int(11) DEFAULT NULL,
`fileheight` int(11) DEFAULT NULL,
`filesize` int(11) DEFAULT NULL,
`filename` varchar(30) DEFAULT NULL,
`filehash` varchar(40) DEFAULT NULL,
2010-12-02 09:50:14 +00:00
`password` varchar(20) DEFAULT NULL,
2011-03-21 08:37:52 +00:00
`ip` varchar(45) NOT NULL,
2010-12-16 10:28:38 +00:00
`sticky` int(1) NOT NULL,
2011-01-02 11:21:53 +00:00
`locked` int(1) NOT NULL,
2010-12-02 09:50:14 +00:00
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;