summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/postgresql/patch/hosts_groups.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/postgresql/patch/hosts_groups.sql')
-rw-r--r--upgrades/dbpatches/1.3/postgresql/patch/hosts_groups.sql18
1 files changed, 9 insertions, 9 deletions
diff --git a/upgrades/dbpatches/1.3/postgresql/patch/hosts_groups.sql b/upgrades/dbpatches/1.3/postgresql/patch/hosts_groups.sql
index 457d6ffb..d8bfe0bf 100644
--- a/upgrades/dbpatches/1.3/postgresql/patch/hosts_groups.sql
+++ b/upgrades/dbpatches/1.3/postgresql/patch/hosts_groups.sql
@@ -1,9 +1,9 @@
CREATE TABLE hosts_groups_tmp (
- hostgroupid bigint unsigned NOT NULL auto_increment,
- hostid bigint unsigned DEFAULT '0' NOT NULL,
- groupid bigint unsigned DEFAULT '0' NOT NULL,
+ hostgroupid bigint DEFAULT '0' NOT NULL,
+ hostid bigint DEFAULT '0' NOT NULL,
+ groupid bigint DEFAULT '0' NOT NULL,
PRIMARY KEY (hostgroupid)
-) ENGINE=InnoDB;
+);
CREATE INDEX hosts_groups_groups_1 on hosts_groups_tmp (hostid,groupid);
insert into hosts_groups_tmp select NULL,hostid,groupid from hosts_groups;
@@ -12,13 +12,13 @@ alter table hosts_groups_tmp rename hosts_groups;
CREATE TABLE hosts_groups_tmp (
- hostgroupid bigint unsigned DEFAULT '0' NOT NULL,
- hostid bigint unsigned DEFAULT '0' NOT NULL,
- groupid bigint unsigned DEFAULT '0' NOT NULL,
+ hostgroupid bigint DEFAULT '0' NOT NULL,
+ hostid bigint DEFAULT '0' NOT NULL,
+ groupid bigint DEFAULT '0' NOT NULL,
PRIMARY KEY (hostgroupid)
-) ENGINE=InnoDB;
+);
CREATE INDEX hosts_groups_groups_1 on hosts_groups_tmp (hostid,groupid);
insert into hosts_groups_tmp select * from hosts_groups;
drop table hosts_groups;
-alter table hosts_groups_tmp rename hosts_groups;
+alter table hosts_groups_tmp rename to hosts_groups;