CREATE TABLE `my_guests` (
`id` int(11) NOT NULL auto_increment,
`id_ank` int(11) NOT NULL,
`id_user` int(11) NOT NULL,
`read` enum('0', '1') NOT NULL default '1',
`count` int(11) NOT NULL default '1',
`time` int(11) NOT NULL,
PRIMARY KEY(`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;