War on varchar. Changed all occurrences of varchar(N) and varchar(N) binary to varbin...
[lhc/web/wiklou.git] / maintenance / archives / patch-profiling.sql
1 -- profiling table
2 -- This is optional
3
4 CREATE TABLE /*$wgDBprefix*/profiling (
5 pf_count int NOT NULL default 0,
6 pf_time float NOT NULL default 0,
7 pf_memory float NOT NULL default 0,
8 pf_name varbinary(255) NOT NULL default '',
9 pf_server varbinary(30) NOT NULL default '',
10 UNIQUE KEY pf_name_server (pf_name, pf_server)
11 ) ENGINE=HEAP;