From: Tim Starling Date: Tue, 28 Feb 2006 05:45:51 +0000 (+0000) Subject: fixed accidentally committed live hack X-Git-Tag: 1.6.0~256 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=ad1ef67aec6ef957222805340ff22a68ef782d4f;p=lhc%2Fweb%2Fwiklou.git fixed accidentally committed live hack --- diff --git a/maintenance/archives/patch-profiling.sql b/maintenance/archives/patch-profiling.sql index 2b1f08afdf..30d5322776 100644 --- a/maintenance/archives/patch-profiling.sql +++ b/maintenance/archives/patch-profiling.sql @@ -1,11 +1,9 @@ -- profiling table -- This is optional -CREATE TABLE profiling ( - pf_count int(11) NOT NULL default '0', - pf_time float NOT NULL default '0', - pf_name varchar(255) NOT NULL default '', - pf_server varchar(30) NOT NULL default '', - UNIQUE KEY pf_name_server (pf_name,pf_server) +CREATE TABLE /*$wgDBprefix*/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) ) TYPE=HEAP; -