· 8 years ago · Jul 27, 2018, 04:10 PM
1CREATE TABLE IF NOT EXISTS `news` (
2 `id` int(11) NOT NULL AUTO_INCREMENT,
3 `user` varchar(25) COLLATE utf8_unicode_ci NOT NULL,
4 `date` text COLLATE utf8_unicode_ci NOT NULL,
5 `to` varchar(25) COLLATE utf8_unicode_ci NOT NULL,
6 `act` text COLLATE utf8_unicode_ci NOT NULL,
7 `desc` text COLLATE utf8_unicode_ci NOT NULL,
8 `time` text COLLATE utf8_unicode_ci NOT NULL,
9 `tinyint` text COLLATE utf8_unicode_ci NOT NULL,
10 PRIMARY KEY (`id`)
11) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=45705 ;