summaryrefslogtreecommitdiffstats
path: root/create/postgresql/schema.sql
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-12-04 11:10:23 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-12-04 11:10:23 +0000
commitb8677042875ced11a84258e57642fa75e85a022c (patch)
tree120f7b0f197cac72079aae1f5a6b8db674ec3047 /create/postgresql/schema.sql
parent560c32cc84776bc518a625dbc92acd08920e3fc1 (diff)
downloadzabbix-b8677042875ced11a84258e57642fa75e85a022c.tar.gz
zabbix-b8677042875ced11a84258e57642fa75e85a022c.tar.xz
zabbix-b8677042875ced11a84258e57642fa75e85a022c.zip
- automatic recovery of unsupported items (Alexei)
- added config.refresh_unsupported (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@2386 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'create/postgresql/schema.sql')
-rw-r--r--create/postgresql/schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/create/postgresql/schema.sql b/create/postgresql/schema.sql
index 358f8b43..98d08d05 100644
--- a/create/postgresql/schema.sql
+++ b/create/postgresql/schema.sql
@@ -96,7 +96,8 @@ CREATE TABLE config (
-- smtp_email varchar(255) DEFAULT '' NOT NULL,
-- password_required int4 DEFAULT '0' NOT NULL,
alert_history int4 DEFAULT '0' NOT NULL,
- alarm_history int4 DEFAULT '0' NOT NULL
+ alarm_history int4 DEFAULT '0' NOT NULL,
+ refresh_unsupported int4 DEFAULT '0' NOT NULL
);
--