profiling table, for profiling live wikis
authorTim Starling <tstarling@users.mediawiki.org>
Sun, 13 Jun 2004 07:33:39 +0000 (07:33 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sun, 13 Jun 2004 07:33:39 +0000 (07:33 +0000)
maintenance/archives/patch-profiling.sql [new file with mode: 0644]

diff --git a/maintenance/archives/patch-profiling.sql b/maintenance/archives/patch-profiling.sql
new file mode 100644 (file)
index 0000000..ea9974c
--- /dev/null
@@ -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)
+);
+