CREATE TABLE IF NOT EXISTS `abuse` ( `id` int(11) NOT NULL AUTO_INCREMENT, `id_user` int(11) NOT NULL, `id_abuse` int(11) NOT NULL, `comment` text NOT NULL, `abuse` set('0','1','2','3','4') NOT NULL DEFAULT '0', `success` set('0','1') NOT NULL DEFAULT '0', `text` text NOT NULL, `time` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1