-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathdisboot.sql
40 lines (36 loc) · 1.2 KB
/
disboot.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
35
36
37
38
39
40
-- ----------------------------
-- Table structure for `t_user_0`
-- ----------------------------
DROP TABLE IF EXISTS `t_user_0`;
CREATE TABLE `t_user_0` (
`uid` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `t_user_1`
-- ----------------------------
DROP TABLE IF EXISTS `t_user_1`;
CREATE TABLE `t_user_1` (
`uid` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `t_user_account_log_0`
-- ----------------------------
DROP TABLE IF EXISTS `t_user_account_log_0`;
CREATE TABLE `t_user_account_log_0` (
`log_id` bigint(20) NOT NULL,
`uid` bigint(20) DEFAULT NULL,
PRIMARY KEY (`log_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for `t_user_account_log_1`
-- ----------------------------
DROP TABLE IF EXISTS `t_user_account_log_1`;
CREATE TABLE `t_user_account_log_1` (
`log_id` bigint(20) NOT NULL,
`uid` bigint(20) DEFAULT NULL,
PRIMARY KEY (`log_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;