summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/postgresql/patch/dchecks.sql
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-15 17:54:37 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-15 17:54:37 +0000
commit1f5a4a142c53921b74238aa93934be448be5e36f (patch)
tree4335ada21366762d2117c43362da531f73dffdcb /upgrades/dbpatches/1.3/postgresql/patch/dchecks.sql
parentf459deea77b1b44cff468c5b22fb5137f502a33b (diff)
downloadzabbix-1f5a4a142c53921b74238aa93934be448be5e36f.tar.gz
zabbix-1f5a4a142c53921b74238aa93934be448be5e36f.tar.xz
zabbix-1f5a4a142c53921b74238aa93934be448be5e36f.zip
- new tables drules,dchecks,dhosts,dservices (Alexei)
- basic support of auto-discovery (Alexei) - new Server parameter StartDiscoverers (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@3890 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch/dchecks.sql')
-rw-r--r--upgrades/dbpatches/1.3/postgresql/patch/dchecks.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/dchecks.sql b/upgrades/dbpatches/1.3/postgresql/patch/dchecks.sql
new file mode 100644
index 00000000..5cf5d873
--- /dev/null
+++ b/upgrades/dbpatches/1.3/postgresql/patch/dchecks.sql
@@ -0,0 +1,7 @@
+CREATE TABLE dchecks (
+ dcheckid bigint DEFAULT '0' NOT NULL,
+ druleid bigint DEFAULT '0' NOT NULL,
+ type integer DEFAULT '0' NOT NULL,
+ ports varchar(255) DEFAULT '0' NOT NULL,
+ PRIMARY KEY (dcheckid)
+);