Browse Source

Update install.sql

main
fallenPineapple 5 years ago
committed by discomrade
parent
commit
9253f61298
  1. 17
      install.sql

17
install.sql

@ -480,6 +480,23 @@ CREATE TABLE IF NOT EXISTS `shadow_filehashes` (
KEY `post_id` (`post`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `votes_archive`
--
CREATE TABLE IF NOT EXISTS `votes_archive` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`board` varchar(58) 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;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

Loading…
Cancel
Save