FIXED CLOUDSTACK-6808 Need to add Database Information to Alter table statements in a commit to schema-430to440.sql

This commit is contained in:
Rajani Karuturi 2014-05-30 11:47:17 +05:30 committed by Kishan Kavala
parent 7c2b1deb34
commit dbd05e3ff5
1 changed files with 6 additions and 6 deletions

View File

@ -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);
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);