From: Greg Sabino Mullane Date: Sat, 12 Aug 2006 19:04:53 +0000 (+0000) Subject: Make pf_server nullable. X-Git-Tag: 1.31.0-rc.0~56015 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=ebf0e8e14b74f16afffde1a00bb2e925ce6af828;p=lhc%2Fweb%2Fwiklou.git Make pf_server nullable. --- diff --git a/maintenance/postgres/tables.sql b/maintenance/postgres/tables.sql index 29a2a7389a..46b428baf9 100644 --- a/maintenance/postgres/tables.sql +++ b/maintenance/postgres/tables.sql @@ -446,7 +446,7 @@ CREATE TABLE profiling ( pf_count INTEGER NOT NULL DEFAULT 0, pf_time NUMERIC(18,10) NOT NULL DEFAULT 0, pf_name TEXT NOT NULL, - pf_server TEXT NOT NULL + pf_server TEXT NULL ); CREATE UNIQUE INDEX pf_name_server ON profiling (pf_name, pf_server);