CREATE TABLE IF NOT EXISTS `community_user_incomm` (
`id` int(11) NOT
NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL,
`cid` int(11) NOT NULL,
`time` int(11) NOT NULL,
`priv` int(11) NOT NULL,
`postov` int(111)
DEFAULT '0',
`them` int(111) DEFAULT '0',
`files` int(111) DEFAULT
'0',
`activate` int(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM
DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;