Newer
Older
Import / web / www.xiaofrog.com / wiki / maintenance / archives / patch-hitcounter.sql
@John Ryland John Ryland on 22 Dec 2020 270 bytes import NUC files
--
-- 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
) TYPE=HEAP MAX_ROWS=25000;