11 lines
216 B
MySQL
11 lines
216 B
MySQL
|
|
-- profiling table
|
||
|
|
-- This is optional
|
||
|
|
|
||
|
|
CREATE TABLE profiling (
|
||
|
|
pf_count integer not null default 0,
|
||
|
|
pf_time float not null default 0,
|
||
|
|
pf_name varchar(255) not null default '',
|
||
|
|
UNIQUE KEY pf_name (pf_name)
|
||
|
|
);
|
||
|
|
|