DROP TABLE IF EXISTS `download`; CREATE TABLE `download` ( `id` int(11) NOT NULL auto_increment, `refid` int(11) NOT NULL, `adres` text NOT NULL, `time` int(11) NOT NULL, `name` text NOT NULL, `type` varchar(4) NOT NULL, `avtor` varchar(25) NOT NULL, `ip` text NOT NULL, `soft` text NOT NULL, `text` text NOT NULL, `screen` text NOT NULL, PRIMARY KEY (`id`), KEY `refid` (`refid`), KEY `type` (`type`), KEY `time` (`time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;