Commit ff877842 by naan1993

更新数据库文件

parent 9ea68741
/*
Navicat MySQL Data Transfer
Source Server : 本地
Source Server Version : 50621
Source Host : localhost:3306
Source Database : biz
Target Server Type : MYSQL
Target Server Version : 50621
File Encoding : 65001
Date: 2017-06-24 23:18:50
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for test
-- ----------------------------
DROP TABLE IF EXISTS `test`;
CREATE TABLE `test` (
`id` int(11) NOT NULL,
`value` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of test
-- ----------------------------
INSERT INTO `test` VALUES ('1', 'qwe');
......@@ -10,7 +10,7 @@ Target Server Type : MYSQL
Target Server Version : 50621
File Encoding : 65001
Date: 2017-06-20 22:14:03
Date: 2017-06-24 23:18:42
*/
SET FOREIGN_KEY_CHECKS=0;
......@@ -324,6 +324,21 @@ INSERT INTO `role` VALUES ('1', '1', '0', '超级管理员', '24', 'administrato
INSERT INTO `role` VALUES ('5', '2', '1', '临时', '26', 'temp', null);
-- ----------------------------
-- Table structure for test
-- ----------------------------
DROP TABLE IF EXISTS `test`;
CREATE TABLE `test` (
`id` int(11) NOT NULL,
`value` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of test
-- ----------------------------
INSERT INTO `test` VALUES ('1', '123');
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment