mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-3608 remove duplicate entries
This commit is contained in:
parent
88acc9bd53
commit
37cb63f6b7
@ -758,3 +758,6 @@ CREATE TABLE `cloud`.`baremetal_rct` (
|
|||||||
`rct` text NOT NULL,
|
`rct` text NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
--Remove duplicates from guest_os_hypervisor table
|
||||||
|
DELETE t1 FROM guest_os_hypervisor t1, guest_os_hypervisor t2 WHERE (t1.hypervisor_type = t2.hypervisor_type AND t1.hypervisor_version = t2.hypervisor_version AND t1.guest_os_id = t2.guest_os_id AND t1.id > t2.id AND t1.is_user_defined=0);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user