-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarreviews.sql
34 lines (28 loc) · 922 Bytes
/
carreviews.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
Navicat MySQL Data Transfer
Source Server : liuhuan
Source Server Version : 50725
Source Host : localhost:3306
Source Database : carreviews
Target Server Type : MYSQL
Target Server Version : 50725
File Encoding : 65001
Date: 2019-04-15 18:15:37
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `user`
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`username` varchar(100) DEFAULT NULL,
`password` varchar(100) DEFAULT NULL,
`phone` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', 'wu', '123456', null);
INSERT INTO `user` VALUES ('2', 'LH', '123456', null);