-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathall.sql
More file actions
executable file
·57 lines (45 loc) · 1.76 KB
/
all.sql
File metadata and controls
executable file
·57 lines (45 loc) · 1.76 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
SQLyog Ultimate v12.08 (32 bit)
MySQL - 5.6.43-log : Database - gamelog_db
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*Table structure for table `loginfo` */
CREATE TABLE `loginfo` (
`uid` bigint(20) NOT NULL AUTO_INCREMENT,
`topicid1` int(11) NOT NULL,
`topicid2` int(11) NOT NULL,
`topicid3` int(11) NOT NULL,
`memberid` int(11) NOT NULL,
`serviceid` int(11) NOT NULL,
`uptime` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
`upnum` bigint(20) NOT NULL,
`total` bigint(20) NOT NULL,
`datas` varchar(4000) NOT NULL,
PRIMARY KEY (`uid`),
KEY `topicid1` (`memberid`,`topicid1`,`topicid2`,`topicid3`),
KEY `uptime` (`uptime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*Table structure for table `logtree` */
CREATE TABLE `logtree` (
`topicid1` int(11) NOT NULL,
`topicid2` int(11) NOT NULL,
`topicid3` int(11) NOT NULL,
PRIMARY KEY (`topicid1`,`topicid2`,`topicid3`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*Table structure for table `topicinfo` */
CREATE TABLE `topicinfo` (
`uid` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
PRIMARY KEY (`uid`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;