CREATE TABLE `gifts` ( `id` int(11) NOT NULL auto_increment, `chek` int(1) NOT NULL, `img` text NOT NULL default '0', `time` int(11) NOT NULL, `idin` int(11) NOT NULL, `idout` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `giftscat` ( `id` int(11) NOT NULL auto_increment, `balls` int(11) NOT NULL, `name` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;