blob: 11bdebc42241736cfb5877fec2f6f3daa6ce4b11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
CREATE TABLE hosts_groups_tmp (
hostgroupid bigint DEFAULT '0' NOT NULL,
hostid bigint DEFAULT '0' NOT NULL,
groupid bigint DEFAULT '0' NOT NULL,
PRIMARY KEY (hostgroupid)
) with OIDS;
CREATE INDEX hosts_groups_tmp_1 on hosts_groups_tmp (hostid,groupid);
insert into hosts_groups_tmp select NULL,hostid,groupid from hosts_groups;
drop table hosts_groups;
alter table hosts_groups_tmp rename to hosts_groups;
CREATE TABLE hosts_groups_tmp (
hostgroupid bigint DEFAULT '0' NOT NULL,
hostid bigint DEFAULT '0' NOT NULL,
groupid bigint DEFAULT '0' NOT NULL,
PRIMARY KEY (hostgroupid)
) with OIDS;
CREATE INDEX hosts_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 to hosts_groups;
|