Move content language details to HTML comments; doesn't need to be immediately there...
[mediawiki.git] / maintenance / archives / patch-hitcounter.sql
blob260f717f03a13ee8f98d04a3c9d800168e46e091
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 /*$wgDBprefix*/hitcounter (
8   hc_id INTEGER UNSIGNED NOT NULL
9 ) TYPE=HEAP MAX_ROWS=25000;