1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 17:31:00 +01:00

Merge pull request #250 from forklessanon/install-patch

Added missing table column
This commit is contained in:
Fredrick Brennan 2014-11-12 10:31:37 +08:00
commit 47cd951fc6

View File

@ -227,6 +227,7 @@ CREATE TABLE IF NOT EXISTS `reports` (
`board` varchar(58) CHARACTER SET utf8 DEFAULT NULL,
`post` int(11) NOT NULL,
`reason` text NOT NULL,
`local` tinyint(1) NOT NULL DEFAULT '0',
`global` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;