summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-profiling.sql
blob: 49b488e9216442da1d1c0c62485bfbadf3100c11 (plain)
1
2
3
4
5
6
7
8
9
10
-- profiling table
-- This is optional

CREATE TABLE /*$wgDBprefix*/profiling (
	pf_count integer not null default 0,
	pf_time float not null default 0,
	pf_name varchar(255) not null default '',
	pf_server varchar(30) not null default '',
	UNIQUE KEY pf_name_server (pf_name, pf_server)
) TYPE=HEAP;