Размер файла: 526B
CREATE TABLE `news` (
`id` int(11) NOT NULL auto_increment,
`date` int(11) NOT NULL default '0',
`text` text NOT NULL,
`plus` int(11) NOT NULL default '0',
`minus` int(11) NOT NULL default '0',
`ipsoft` text NOT NULL,
KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=100 ;
CREATE TABLE `news_com` (
`id` int(11) NOT NULL auto_increment,
`nid` int(11) NOT NULL default '0',
`date` int(11) NOT NULL default '0',
`name` text NOT NULL,
`text` text NOT NULL,
KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=383 ;