1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-15 11:23:17 +01:00
vichan/templates/posts.sql

28 lines
918 B
MySQL
Raw Normal View History

2010-12-02 10:50:14 +01:00
CREATE TABLE IF NOT EXISTS `posts_{board}` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`thread` int(11) DEFAULT NULL,
`subject` varchar(100) NOT NULL,
`email` varchar(30) NOT NULL,
2011-04-30 10:11:29 +02:00
`name` varchar(35) NOT NULL,
`trip` varchar(15) DEFAULT NULL,
`capcode` varchar(50) DEFAULT NULL,
2010-12-02 10:50:14 +01: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` text DEFAULT NULL,
2010-12-02 10:50:14 +01:00
`password` varchar(20) DEFAULT NULL,
2011-03-21 09:37:52 +01:00
`ip` varchar(45) NOT NULL,
2010-12-16 11:28:38 +01:00
`sticky` int(1) NOT NULL,
2011-01-02 12:21:53 +01:00
`locked` int(1) NOT NULL,
2011-05-18 09:05:48 +02:00
`embed` text,
2010-12-02 10:50:14 +01:00
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;