CREATE TABLE IF NOT EXISTS `bb_shout` (
`shout_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`shout_username` varchar(25) CHARACTER SET cp1251 NOT NULL DEFAULT '',
`shout_user_id` mediumint(8) NOT NULL DEFAULT '0',
`shout_group_id` mediumint(8) NOT NULL DEFAULT '0',
`shout_session_time` int(11) NOT NULL DEFAULT '0',
`shout_ip` char(8) CHARACTER SET cp1251 NOT NULL DEFAULT '',
`shout_text` varchar(1000) CHARACTER SET cp1251 NOT NULL,
`shout_active` mediumint(8) NOT NULL DEFAULT '0',
KEY `shout_id` (`shout_id`)
);