Dlaczego ? Moje snatched wygląda tak :
CREATE TABLE IF NOT EXISTS `snatched` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`torrentid` int(11) DEFAULT '0',
`userid` int(11) DEFAULT '0',
`torrent` int(10) unsigned NOT NULL DEFAULT '0',
`torrent_name` varchar(255) NOT NULL DEFAULT '',
`torrent_category` int(10) unsigned NOT NULL DEFAULT '0',
`port` smallint(5) unsigned NOT NULL DEFAULT '0',
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
`to_go` bigint(20) unsigned NOT NULL DEFAULT '0',
`seeder` enum('yes','no') NOT NULL DEFAULT 'no',
`last_action` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`startdat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`completedat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`connectable` enum('yes','no') NOT NULL DEFAULT 'yes',
`agent` varchar(60) NOT NULL DEFAULT '',
`finished` enum('yes','no') NOT NULL DEFAULT 'no',
PRIMARY KEY (`id`),
KEY `torrent` (`torrent`,`userid`),
KEY `torrentid` (`torrentid`),
KEY `seeder` (`seeder`),
KEY `finished` (`finished`,`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin2 AUTO_INCREMENT=4234 ;
Porównywałem obydwa i różni się kilkoma więcej wpisami ??