Source code raw
CREATE TABLE `spam_tickets` (
`id` bigint(20) NOT NULL auto_increment,
`answer` varchar(100) NOT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `answer` (`answer`,`date`)
)
Comments
There is currently no comment here.