--
-- Table structure for table `news`
--
CREATE TABLE IF NOT EXISTS `news` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`subject` text NOT NULL,
`content` text NOT NULL,
`date` text NOT NULL,
`edited_id` int(11) NOT NULL,
`deleted_time` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;
|