From: raymond Date: Wed, 28 Jan 2015 16:26:44 +0000 (+0100) Subject: Kill hitcounter remains X-Git-Tag: 1.31.0-rc.0~12538^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=20dc3883ec0fbc45c5d43b453e3d7e7013fba3c9;p=lhc%2Fweb%2Fwiklou.git Kill hitcounter remains Followup to Ieeb558f9523c11965cbc1941cad4f316c00c85c5 No need to create the table and drop it then Change-Id: I11409c6e5a76d65365c5652039c584e249dbf556 --- diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index 7a36f0195f..81f563a578 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -37,7 +37,6 @@ class MysqlUpdater extends DatabaseUpdater { array( 'addField', 'ipblocks', 'ipb_expiry', 'patch-ipb_expiry.sql' ), array( 'doInterwikiUpdate' ), array( 'doIndexUpdate' ), - array( 'addTable', 'hitcounter', 'patch-hitcounter.sql' ), array( 'addField', 'recentchanges', 'rc_type', 'patch-rc_type.sql' ), array( 'addIndex', 'recentchanges', 'new_name_timestamp', 'patch-rc-newindex.sql' ), diff --git a/maintenance/archives/patch-hitcounter.sql b/maintenance/archives/patch-hitcounter.sql deleted file mode 100644 index 2d698f6865..0000000000 --- a/maintenance/archives/patch-hitcounter.sql +++ /dev/null @@ -1,9 +0,0 @@ --- --- hitcounter table is used to buffer page hits before they are periodically --- counted and added to the cur_counter column in the cur table. --- December 2003 --- - -CREATE TABLE /*$wgDBprefix*/hitcounter ( - hc_id INTEGER UNSIGNED NOT NULL -) ENGINE=MEMORY MAX_ROWS=25000;