-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathext_tables.sql
More file actions
20 lines (19 loc) · 942 Bytes
/
ext_tables.sql
File metadata and controls
20 lines (19 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Table structure for table 'tx_mysqlreport_query_information'
#
CREATE TABLE tx_mysqlreport_query_information
(
query_id int(11) unsigned DEFAULT '0',
mode char(3) DEFAULT '' NOT NULL,
ip varchar(45) DEFAULT '' NOT NULL,
request text,
referer text,
unique_call_identifier varchar(24) DEFAULT '' NOT NULL,
duration decimal(11,8) DEFAULT '0.00000000' NOT NULL,
query blob NOT NULL,
query_type varchar(20) DEFAULT '' NOT NULL,
explain_query text NOT NULL,
using_index tinyint(1) DEFAULT '0' NOT NULL,
using_fulltable tinyint(1) DEFAULT '0' NOT NULL,
KEY uniqueCalls (unique_call_identifier,crdate,mode,duration)
);