summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index 7ffc8715..a63680e8 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -1,6 +1,6 @@
--
--- Zabbix
--- Copyright (C) 2000,2001,2002,2003 Alexei Vladishev
+-- ZABBIX
+-- Copyright (C) 2000-2005 SIA Zabbix
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
@@ -186,7 +186,7 @@ CREATE TABLE audit (
PRIMARY KEY (auditid)
);
-CREATE UNIQUE INDEX audit_userid_clock on audit (userid,clock);
+CREATE INDEX audit_userid_clock on audit (userid,clock);
CREATE INDEX audit_clock on audit (clock);
--