including the new Defines.php
[mediawiki.git] / maintenance / archives / patch-hitcounter.sql
blob169081ff1d73cca65a5ad6f1a378a3d57f8cd9f6
1 --
2 -- hitcounter table is used to buffer page hits before they are periodically 
3 -- counted and added to the cur_counter column in the cur table.
4 -- December 2003
5 --
7 CREATE TABLE hitcounter (
8   hc_id INTEGER UNSIGNED NOT NULL
9 ) TYPE=HEAP MAX_ROWS=25000;