diff options
Diffstat (limited to 'upgrades/dbpatches/1.4/postgresql/patch/hosts.sql')
-rw-r--r-- | upgrades/dbpatches/1.4/postgresql/patch/hosts.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrades/dbpatches/1.4/postgresql/patch/hosts.sql b/upgrades/dbpatches/1.4/postgresql/patch/hosts.sql index 8b633a94..c21106e9 100644 --- a/upgrades/dbpatches/1.4/postgresql/patch/hosts.sql +++ b/upgrades/dbpatches/1.4/postgresql/patch/hosts.sql @@ -11,7 +11,7 @@ CREATE TABLE hosts_tmp ( available integer DEFAULT '0' NOT NULL, errors_from integer DEFAULT '0' NOT NULL, PRIMARY KEY (hostid) -); +) with OIDS; CREATE INDEX hosts_1 on hosts_tmp (host); CREATE INDEX hosts_2 on hosts_tmp (status); |