forked from chykong/java_ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_1.0.sql
More file actions
29 lines (24 loc) · 700 Bytes
/
Copy pathtest_1.0.sql
File metadata and controls
29 lines (24 loc) · 700 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
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50534
Source Host : localhost:3306
Source Database : test
Target Server Type : MYSQL
Target Server Version : 50534
File Encoding : 65001
Date: 2017-05-13 23:57:45
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `staff`
-- ----------------------------
DROP TABLE IF EXISTS `staff`;
CREATE TABLE `staff` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20220 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of staff
-- ----------------------------