-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathperson.sql
More file actions
33 lines (27 loc) · 886 Bytes
/
person.sql
File metadata and controls
33 lines (27 loc) · 886 Bytes
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
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 60011
Source Host : localhost:3306
Source Database : jpa
Target Server Type : MYSQL
Target Server Version : 60011
File Encoding : 65001
Date: 2017-11-05 17:11:06
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for person
-- ----------------------------
DROP TABLE IF EXISTS `person`;
CREATE TABLE `person` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(255) DEFAULT NULL,
`last_name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of person
-- ----------------------------
INSERT INTO `person` VALUES ('1', 'lxl@qq.com', 'lxl');
INSERT INTO `person` VALUES ('2', 'cyy@qq.com', 'cyy');