summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.4/postgresql/patch/applications.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/applications.sql')
-rw-r--r--upgrades/dbpatches/1.4/postgresql/patch/applications.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/applications.sql b/upgrades/dbpatches/1.4/postgresql/patch/applications.sql
index 13d05bd3..9d0a6f57 100644
--- a/upgrades/dbpatches/1.4/postgresql/patch/applications.sql
+++ b/upgrades/dbpatches/1.4/postgresql/patch/applications.sql
@@ -4,7 +4,7 @@ CREATE TABLE applications_tmp (
name varchar(255) DEFAULT '' NOT NULL,
templateid bigint DEFAULT '0' NOT NULL,
PRIMARY KEY (applicationid)
-);
+) with OIDS;
CREATE INDEX applications_1 on applications_tmp (templateid);
CREATE UNIQUE INDEX applications_2 on applications_tmp (hostid,name);