Skip to content

Commit 87c4a0b

Browse files
committed
项目数据库脚本文件上传
1 parent 04c57eb commit 87c4a0b

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

script/answer.sql

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
Navicat MySQL Data Transfer
3+
4+
Source Server : 119.23.106.146
5+
Source Server Version : 50723
6+
Source Host : 119.23.106.146:3306
7+
Source Database : answer
8+
9+
Target Server Type : MYSQL
10+
Target Server Version : 50723
11+
File Encoding : 65001
12+
13+
Date: 2018-10-17 17:27:23
14+
*/
15+
16+
SET FOREIGN_KEY_CHECKS=0;
17+
18+
-- ----------------------------
19+
-- Table structure for `smw_user`
20+
-- ----------------------------
21+
DROP TABLE IF EXISTS `smw_user`;
22+
CREATE TABLE `smw_user` (
23+
`id` bigint(18) NOT NULL AUTO_INCREMENT,
24+
`user_name` varchar(55) DEFAULT NULL,
25+
`sex` tinyint(3) DEFAULT NULL,
26+
`password` varchar(55) DEFAULT NULL,
27+
`email` varchar(55) DEFAULT NULL,
28+
`address` varchar(55) DEFAULT NULL,
29+
`create_time` datetime DEFAULT NULL,
30+
`update_time` datetime DEFAULT NULL,
31+
PRIMARY KEY (`id`)
32+
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
33+
34+
-- ----------------------------
35+
-- Records of smw_user
36+
-- ----------------------------
37+
INSERT INTO `smw_user` VALUES ('1', 'answer', '1', '123456', 'answer_ljm@163.com', 'sz', '2018-10-16 11:10:47', '2018-10-16 11:10:50');
38+
INSERT INTO `smw_user` VALUES ('2', 'admin', '1', '123456', 'admin@qq.com', 'sz', '2018-10-16 11:10:47', '2018-10-16 11:10:50');

0 commit comments

Comments
 (0)