From: Max Semenik Date: Thu, 7 Oct 2010 16:20:20 +0000 (+0000) Subject: Revert r74273 per CR: this patch is not needed because our SQL conversion magic handl... X-Git-Tag: 1.31.0-rc.0~34595 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=68b39fbd234bb477cfbf277118ea7e22ad5211b9;p=lhc%2Fweb%2Fwiklou.git Revert r74273 per CR: this patch is not needed because our SQL conversion magic handles the MySQL version just fine, and I've tweaked it in r74428 to look nicer --- diff --git a/maintenance/sqlite/archives/patch-profiling.sql b/maintenance/sqlite/archives/patch-profiling.sql deleted file mode 100644 index a711dd70f3..0000000000 --- a/maintenance/sqlite/archives/patch-profiling.sql +++ /dev/null @@ -1,11 +0,0 @@ --- profiling table for SQLite --- This is optional - -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 '', - PRIMARY KEY (pf_name, pf_server) -);