summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-hitcounter.sql
blob: 50e56e0ce2c0c5129b696f6c4735361e747f580b (plain)
1
2
3
4
5
6
7
8
9
--
-- 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=HEAP MAX_ROWS=25000;