diff --git a/setup/db/db/schema-430to440.sql b/setup/db/db/schema-430to440.sql index 22626080452..7cd01d73f7e 100644 --- a/setup/db/db/schema-430to440.sql +++ b/setup/db/db/schema-430to440.sql @@ -1677,11 +1677,11 @@ ALTER TABLE `cloud`.`load_balancer_healthcheck_policies` ADD COLUMN `display` ti ALTER TABLE `cloud`.`load_balancer_stickiness_policies` ADD COLUMN `display` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'True if the policy can be displayed to the end user'; -alter table user_ip_address add column removed datetime DEFAULT NULL COMMENT 'date removed'; -alter table user_ip_address add column created datetime NULL COMMENT 'date created'; +alter table `cloud`.`user_ip_address` add column removed datetime DEFAULT NULL COMMENT 'date removed'; +alter table `cloud`.`user_ip_address` add column created datetime NULL COMMENT 'date created'; -alter table vlan add column removed datetime DEFAULT NULL COMMENT 'date removed'; -alter table vlan add column created datetime NULL COMMENT 'date created'; +alter table `cloud`.`vlan` add column removed datetime DEFAULT NULL COMMENT 'date removed'; +alter table `cloud`.`vlan` add column created datetime NULL COMMENT 'date created'; -alter table user_ip_address drop key public_ip_address; -alter table user_ip_address add UNIQUE KEY public_ip_address (public_ip_address,source_network_id, removed); \ No newline at end of file +alter table `cloud`.`user_ip_address` drop key public_ip_address; +alter table `cloud`.`user_ip_address` add UNIQUE KEY public_ip_address (public_ip_address,source_network_id, removed);