-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase-structure.sql
More file actions
31 lines (27 loc) · 921 Bytes
/
Copy pathdatabase-structure.sql
File metadata and controls
31 lines (27 loc) · 921 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
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
# ************************************************************
# Dump of table access_log
# ------------------------------------------------------------
DROP TABLE IF EXISTS `access_log`;
CREATE TABLE `access_log` (
`id` varchar(36) NOT NULL DEFAULT '',
`ipAddress` varchar(45) DEFAULT NULL,
`ipv4` tinyint(1) DEFAULT NULL,
`ipv6` tinyint(1) DEFAULT NULL,
`rfc1413` varchar(255) DEFAULT NULL,
`httpAuthUser` varchar(255) DEFAULT NULL,
`timestamp` int(11) DEFAULT NULL,
`method` varchar(7) DEFAULT NULL,
`resource` text,
`protocol` varchar(100) DEFAULT NULL,
`httpStatus` smallint(3) DEFAULT NULL,
`size` int(11) DEFAULT NULL,
`referer` text,
`userAgent` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;