From 7812fc66eba805dcbaad224fa08e81b8705da133 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sun, 13 Jun 2004 07:33:39 +0000 Subject: [PATCH] profiling table, for profiling live wikis --- maintenance/archives/patch-profiling.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 maintenance/archives/patch-profiling.sql diff --git a/maintenance/archives/patch-profiling.sql b/maintenance/archives/patch-profiling.sql new file mode 100644 index 0000000000..ea9974ce3f --- /dev/null +++ b/maintenance/archives/patch-profiling.sql @@ -0,0 +1,10 @@ +-- profiling table +-- This is optional + +CREATE TABLE profiling ( + pf_count integer not null default 0, + pf_time float not null default 0, + pf_name varchar(255) not null default '', + UNIQUE KEY pf_name (pf_name) +); + -- 2.20.1