summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/postgresql/patch/dservices.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch/dservices.sql')
-rw-r--r--upgrades/dbpatches/1.3/postgresql/patch/dservices.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/dservices.sql b/upgrades/dbpatches/1.3/postgresql/patch/dservices.sql
new file mode 100644
index 00000000..3a2ec37a
--- /dev/null
+++ b/upgrades/dbpatches/1.3/postgresql/patch/dservices.sql
@@ -0,0 +1,10 @@
+CREATE TABLE dservices (
+ dserviceid bigint DEFAULT '0' NOT NULL,
+ dhostid bigint DEFAULT '0' NOT NULL,
+ type integer DEFAULT '0' NOT NULL,
+ port integer DEFAULT '0' NOT NULL,
+ status integer DEFAULT '0' NOT NULL,
+ lastup integer DEFAULT '0' NOT NULL,
+ lastdown integer DEFAULT '0' NOT NULL,
+ PRIMARY KEY (dserviceid)
+);