· 8 years ago · Mar 05, 2018, 04:44 PM
1
2CREATE TABLE IF NOT EXISTS `fs_boards` (
3 `id` int(11) NOT NULL auto_increment,
4 `shortname` varchar(32) NOT NULL,
5 `name` varchar(256) NOT NULL,
6 `url` varchar(256) NOT NULL,
7 `threads_refresh_rate` int(11) NOT NULL,
8 `threads_posts` int(11) NOT NULL,
9 `threads_media` int(11) NOT NULL,
10 `threads_thumb` int(11) NOT NULL,
11 `max_ancient_id` int(11) NOT NULL,
12 `max_indexed_id` int(11) NOT NULL,
13 PRIMARY KEY (`id`)
14) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;