1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 17:31:00 +01:00
This commit is contained in:
8chan 2014-11-09 22:19:15 -08:00
parent cf81d83942
commit 557c6a7e35

View File

@ -304,6 +304,24 @@ CREATE TABLE IF NOT EXISTS `ban_appeals` (
KEY `ban_id` (`ban_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `post_clean`
--
CREATE TABLE `post_clean` (
`clean_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`post_id` int(11) unsigned NOT NULL,
`board_id` varchar(58) NOT NULL,
`clean_local` tinyint(1) NOT NULL DEFAULT '0',
`clean_local_mod_id` smallint(6) unsigned DEFAULT NULL,
`clean_global` tinyint(1) NOT NULL DEFAULT '0',
`clean_global_mod_id` smallint(6) unsigned DEFAULT NULL,
PRIMARY KEY (`clean_id`),
UNIQUE KEY `clean_id_UNIQUE` (`clean_id`)
);
/*!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 */;