summaryrefslogtreecommitdiffstats
path: root/upgrades
diff options
context:
space:
mode:
authoralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-04-13 08:14:37 +0000
committeralex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-04-13 08:14:37 +0000
commit04ab7dc48ef9493350af3eef5c9b45d680aecd6d (patch)
tree78a0f75a75cd5eaebafb7c64ff74268c1fc77365 /upgrades
parentc1bd0578e4007addfb567e10b9cfd2ad1b8a927a (diff)
downloadzabbix-04ab7dc48ef9493350af3eef5c9b45d680aecd6d.tar.gz
zabbix-04ab7dc48ef9493350af3eef5c9b45d680aecd6d.tar.xz
zabbix-04ab7dc48ef9493350af3eef5c9b45d680aecd6d.zip
Different approach to autodiscovery. Database changes.
git-svn-id: svn://svn.zabbix.com/trunk@3998 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'upgrades')
-rw-r--r--upgrades/dbpatches/1.4/mysql/patch/dhosts.sql1
-rw-r--r--upgrades/dbpatches/1.4/mysql/patch/drules.sql4
-rw-r--r--upgrades/dbpatches/1.4/mysql/patch/dservices.sql1
-rw-r--r--upgrades/dbpatches/1.4/postgresql/patch/dhosts.sql1
-rw-r--r--upgrades/dbpatches/1.4/postgresql/patch/drules.sql4
-rw-r--r--upgrades/dbpatches/1.4/postgresql/patch/dservices.sql1
6 files changed, 0 insertions, 12 deletions
diff --git a/upgrades/dbpatches/1.4/mysql/patch/dhosts.sql b/upgrades/dbpatches/1.4/mysql/patch/dhosts.sql
index d15489c8..17718048 100644
--- a/upgrades/dbpatches/1.4/mysql/patch/dhosts.sql
+++ b/upgrades/dbpatches/1.4/mysql/patch/dhosts.sql
@@ -5,6 +5,5 @@ CREATE TABLE dhosts (
status integer DEFAULT '0' NOT NULL,
lastup integer DEFAULT '0' NOT NULL,
lastdown integer DEFAULT '0' NOT NULL,
- eventsent integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dhostid)
) type=InnoDB;
diff --git a/upgrades/dbpatches/1.4/mysql/patch/drules.sql b/upgrades/dbpatches/1.4/mysql/patch/drules.sql
index f2ffd70f..46a96eff 100644
--- a/upgrades/dbpatches/1.4/mysql/patch/drules.sql
+++ b/upgrades/dbpatches/1.4/mysql/patch/drules.sql
@@ -6,9 +6,5 @@ CREATE TABLE drules (
delay integer DEFAULT '0' NOT NULL,
nextcheck integer DEFAULT '0' NOT NULL,
status integer DEFAULT '0' NOT NULL,
- upevent integer DEFAULT '0' NOT NULL,
- downevent integer DEFAULT '0' NOT NULL,
- svcupevent integer DEFAULT '0' NOT NULL,
- svcdownevent integer DEFAULT '0' NOT NULL,
PRIMARY KEY (druleid)
) type=InnoDB;
diff --git a/upgrades/dbpatches/1.4/mysql/patch/dservices.sql b/upgrades/dbpatches/1.4/mysql/patch/dservices.sql
index 9c8fc2b2..1e37f046 100644
--- a/upgrades/dbpatches/1.4/mysql/patch/dservices.sql
+++ b/upgrades/dbpatches/1.4/mysql/patch/dservices.sql
@@ -6,6 +6,5 @@ CREATE TABLE dservices (
status integer DEFAULT '0' NOT NULL,
lastup integer DEFAULT '0' NOT NULL,
lastdown integer DEFAULT '0' NOT NULL,
- eventsent integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dserviceid)
) type=InnoDB;
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/dhosts.sql b/upgrades/dbpatches/1.4/postgresql/patch/dhosts.sql
index f4a1c855..37f3649e 100644
--- a/upgrades/dbpatches/1.4/postgresql/patch/dhosts.sql
+++ b/upgrades/dbpatches/1.4/postgresql/patch/dhosts.sql
@@ -5,6 +5,5 @@ CREATE TABLE dhosts (
status integer DEFAULT '0' NOT NULL,
lastup integer DEFAULT '0' NOT NULL,
lastdown integer DEFAULT '0' NOT NULL,
- eventsent integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dhostid)
);
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/drules.sql b/upgrades/dbpatches/1.4/postgresql/patch/drules.sql
index f05f14b9..b2ba3419 100644
--- a/upgrades/dbpatches/1.4/postgresql/patch/drules.sql
+++ b/upgrades/dbpatches/1.4/postgresql/patch/drules.sql
@@ -6,9 +6,5 @@ CREATE TABLE drules (
delay integer DEFAULT '0' NOT NULL,
nextcheck integer DEFAULT '0' NOT NULL,
status integer DEFAULT '0' NOT NULL,
- upevent integer DEFAULT '0' NOT NULL,
- downevent integer DEFAULT '0' NOT NULL,
- svcupevent integer DEFAULT '0' NOT NULL,
- svcdownevent integer DEFAULT '0' NOT NULL,
PRIMARY KEY (druleid)
);
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/dservices.sql b/upgrades/dbpatches/1.4/postgresql/patch/dservices.sql
index 2636c81d..3a2ec37a 100644
--- a/upgrades/dbpatches/1.4/postgresql/patch/dservices.sql
+++ b/upgrades/dbpatches/1.4/postgresql/patch/dservices.sql
@@ -6,6 +6,5 @@ CREATE TABLE dservices (
status integer DEFAULT '0' NOT NULL,
lastup integer DEFAULT '0' NOT NULL,
lastdown integer DEFAULT '0' NOT NULL,
- eventsent integer DEFAULT '0' NOT NULL,
PRIMARY KEY (dserviceid)
);