An attempt to rebase leftypol software on vichan.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
397 B

--
-- Table structure for table `votes_archive`
--
CREATE TABLE `votes_archive` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`board` varchar(58) CHARACTER SET utf8mb4 NOT NULL,
`thread_id` int(10) NOT NULL,
`ip` varchar(61) CHARACTER SET ascii NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`),
KEY `ip` (`ip`, `board`, `thread_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;