IMANOV (28.02.2010/15:03)--
prowu dayte standartuyu bazu novostey
-- Структура таблицы `news`
--
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`id` int(11) NOT NULL auto_increment,
`time` int(11) NOT NULL,
`avt` varchar(25) NOT NULL default '',
`name` text NOT NULL,
`text` text NOT NULL,
`kom` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;