CREATE TABLE IF NOT EXISTS `chat_post` (
`id` int(11) NOT NULL
AUTO_INCREMENT,
`room` int(11) NOT NULL,
`id_user` int(11) DEFAULT
NULL,
`time` int(11) NOT NULL,
`msg` varchar(1024) DEFAULT NULL,
`vopros` int(11) DEFAULT NULL,
`umnik_st` set('0','1','2','3','4')
DEFAULT '0',
`shutnik` set('0','1') NOT NULL DEFAULT '0',
`privat`
int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `room` (`room`)
)
ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;