2b1f08afdf18b84b01cc8f9ed96da9a889a6cd2f
[lhc/web/wiklou.git] / maintenance / archives / patch-profiling.sql
1 -- profiling table
2 -- This is optional
3
4 CREATE TABLE profiling (
5 pf_count int(11) NOT NULL default '0',
6 pf_time float NOT NULL default '0',
7 pf_name varchar(255) NOT NULL default '',
8 pf_server varchar(30) NOT NULL default '',
9 UNIQUE KEY pf_name_server (pf_name,pf_server)
10 ) TYPE=HEAP;
11