allow NULL html/mathml entries in math table
[mediawiki.git] / maintenance / archives / patch-profiling.sql
blobea9974ce3f76e95daa84ad8daaacbd0fcaec3afc
1 -- profiling table
2 -- This is optional
4 CREATE TABLE profiling (
5         pf_count integer not null default 0,
6         pf_time float not null default 0,
7         pf_name varchar(255) not null default '',
8         UNIQUE KEY pf_name (pf_name)
9 );
10