translator/sql/zh_news.sql

28 lines
633 B
SQL

/*
Navicat MySQL Data Transfer
Source Server : ossean
Source Server Version : 50535
Source Host : 127.0.0.1:3306
Source Database : sedb
Target Server Type : MYSQL
Target Server Version : 50535
File Encoding : 65001
Date: 2016-12-22 22:01:55
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for zh_news
-- ----------------------------
DROP TABLE IF EXISTS `zh_news`;
CREATE TABLE `zh_news` (
`id` int(11) NOT NULL,
`title` varchar(2000) DEFAULT NULL,
`content` longtext,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;