CREATE TABLE IF NOT EXISTS `myblog` ( `id` int(11) NOT NULL auto_increment, `user_id` int(11) NOT NULL, `msz` text character set utf8 NOT NULL, `mst` text character set utf8 NOT NULL, `date` int(11) NOT NULL, `comment` text character set utf8 NOT NULL, `comcount` int(11) NOT NULL default '0', `edit` int(11) NOT NULL, `count` int(11) NOT NULL, `imgurl` text character set utf8 NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=20 ; CREATE TABLE IF NOT EXISTS `myblogcom` ( `id` int(11) NOT NULL auto_increment, `comfromid` int(11) NOT NULL, `combyid` int(11) NOT NULL, `comdate` int(11) NOT NULL, `comment` text character set utf8 NOT NULL, `comcount` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=8 ;