-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlockdb.sql
More file actions
executable file
·32 lines (26 loc) · 858 Bytes
/
lockdb.sql
File metadata and controls
executable file
·32 lines (26 loc) · 858 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
/*
Navicat MySQL Data Transfer
Source Server : z-local
Source Server Version : 50626
Source Host : localhost:3306
Source Database : lockdb
Target Server Type : MYSQL
Target Server Version : 50626
File Encoding : 65001
Date: 2016-09-09 18:06:32
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for lock_members
-- ----------------------------
DROP TABLE IF EXISTS `lock_members`;
CREATE TABLE `lock_members` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`username` varchar(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of lock_members
-- ----------------------------
INSERT INTO `lock_members` VALUES ('1', 'lock');
INSERT INTO `lock_members` VALUES ('2', 'fancy');