forked from froemken/mysqlreport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
21 lines (20 loc) · 1002 Bytes
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Table structure for table 'tx_mysqlreport_domain_model_profile'
#
CREATE TABLE tx_mysqlreport_domain_model_profile
(
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 double(11,8) DEFAULT '0.00000000' NOT NULL,
query blob NOT NULL,
query_type varchar(20) DEFAULT '' NOT NULL,
profile text NOT NULL,
explain_query text NOT NULL,
not_using_index tinyint(1) DEFAULT '0' NOT NULL,
using_fulltable tinyint(1) DEFAULT '0' NOT NULL,
KEY profileCalls (unique_call_identifier,crdate,mode,duration)
);