-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtables.txt
More file actions
35 lines (25 loc) · 771 Bytes
/
tables.txt
File metadata and controls
35 lines (25 loc) · 771 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
34
35
CREATE TABLE `rssc_log` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`time` text NOT NULL,
`endpoint` text NOT NULL,
`feed` text NOT NULL,
`action` int(11) NOT NULL,
`status` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4
CREATE TABLE `rssc_ping` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`feed` text NOT NULL,
`time` char(20) NOT NULL,
`hash` char(32) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4
CREATE TABLE `rssc_sub` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`time` text NOT NULL,
`endpoint` text NOT NULL,
`port` int(11) NOT NULL,
`feed` text NOT NULL,
`failures` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4