1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-25 15:33:43 +01:00
vichan/templates/posts.sql

27 lines
923 B
MySQL
Raw Normal View History

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