加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bigframe.sql 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
赵占涛 提交于 2013-11-26 19:55 . 添加了数据库文件
/*
Navicat MySQL Data Transfer
Source Server : me
Source Server Version : 50521
Source Host : localhost:3306
Source Database : bigframe
Target Server Type : MYSQL
Target Server Version : 50521
File Encoding : 65001
Date: 2013-11-26 19:54:49
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for article
-- ----------------------------
DROP TABLE IF EXISTS `article`;
CREATE TABLE `article` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`content` text NOT NULL,
`createTime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of article
-- ----------------------------
INSERT INTO `article` VALUES ('6', '1', '11', null);
INSERT INTO `article` VALUES ('7', '2', '22', null);
INSERT INTO `article` VALUES ('8', '3', '33', null);
INSERT INTO `article` VALUES ('9', '4', '44', null);
INSERT INTO `article` VALUES ('10', 'qqq', 'eee', '2013-11-22 23:23:02');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化