View file news/tables.txt

File size: 161B
CREATE TABLE `news` (
`id` int(11) NOT NULL auto_increment,
`date` text NOT NULL,
`news` text NOT NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 ;