Followup r69961. Remove now unused global.
[lhc/web/wiklou.git] / maintenance / archives / patch-profiling.sql
index 2b1f08a..e748ca3 100644 (file)
@@ -1,11 +1,11 @@
 -- profiling table
 -- This is optional
 
-CREATE TABLE profiling (
-  pf_count int(11) NOT NULL default '0',
-  pf_time float NOT NULL default '0',
+CREATE TABLE /*$wgDBprefix*/profiling (
+  pf_count int NOT NULL default 0,
+  pf_time float NOT NULL default 0,
+  pf_memory 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)
-) TYPE=HEAP;
-
+  UNIQUE KEY pf_name_server (pf_name, pf_server)
+) ENGINE=HEAP;