This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `abuse_reports` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`created` datetime NOT NULL, | |
`modified` datetime NOT NULL, | |
`reporter_id` int(11) DEFAULT NULL, | |
`ip_address` varchar(255) NOT NULL, | |
`addon_id` int(11) unsigned DEFAULT NULL, | |
`user_id` int(11) DEFAULT NULL, | |
`message` longtext NOT NULL, | |
`guid` char(255) DEFAULT NULL, |