Forgot to add status column to admin report system :3

This commit is contained in:
Stefan Brannfjell 2014-03-12 21:47:52 +01:00
parent 42db697f50
commit 1d0d5b5ff7

View File

@ -103,6 +103,7 @@ CREATE TABLE IF NOT EXISTS `znote_player_reports` (
`posz` int(6) NOT NULL,
`report_description` VARCHAR(255) NOT NULL,
`date` INT(11) NOT NULL,
`status` TINYINT(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;