· 9 years ago · Nov 19, 2016, 09:04 PM
1CREATE TABLE IF NOT EXISTS `CheatDownloads` (
2 `downloadkey` varchar(32) NOT NULL,
3 `file` varchar(255) NOT NULL DEFAULT '',
4 `downloads` int(10) unsigned NOT NULL DEFAULT '0',
5 `expires` int(10) unsigned NOT NULL DEFAULT '0',
6 UNIQUE KEY `downloadkey` (`downloadkey`)
7) ENGINE=InnoDB DEFAULT CHARSET=latin1;