summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/postgresql/patch
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch')
-rw-r--r--upgrades/dbpatches/1.3/postgresql/patch/dhosts.sql1
-rw-r--r--upgrades/dbpatches/1.3/postgresql/patch/dservices.sql1
2 files changed, 2 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/dhosts.sql b/upgrades/dbpatches/1.3/postgresql/patch/dhosts.sql
index 37f3649e..f4a1c855 100644
--- a/upgrades/dbpatches/1.3/postgresql/patch/dhosts.sql
+++ b/upgrades/dbpatches/1.3/postgresql/patch/dhosts.sql
@@ -5,5 +5,6 @@ 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.3/postgresql/patch/dservices.sql b/upgrades/dbpatches/1.3/postgresql/patch/dservices.sql
index 3a2ec37a..2636c81d 100644
--- a/upgrades/dbpatches/1.3/postgresql/patch/dservices.sql
+++ b/upgrades/dbpatches/1.3/postgresql/patch/dservices.sql
@@ -6,5 +6,6 @@ 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)
);