mirror of https://github.com/apache/cloudstack.git
db: Fix commas which should be dots in create-schema, fix debug msg
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
f2ae6dcda9
commit
44c8a33cf2
|
|
@ -70,7 +70,7 @@ public class Upgrade40to41 implements DbUpgrade {
|
|||
public File[] getCleanupScripts() {
|
||||
String script = Script.findScript("", "db/schema-40to410-cleanup.sql");
|
||||
if (script == null) {
|
||||
throw new CloudRuntimeException("Unable to find db/schema-302to40-cleanup.sql");
|
||||
throw new CloudRuntimeException("Unable to find db/schema-40to410-cleanup.sql");
|
||||
}
|
||||
|
||||
return new File[] { new File(script) };
|
||||
|
|
|
|||
|
|
@ -145,12 +145,12 @@ DROP TABLE IF EXISTS `cloud`.`region`;
|
|||
DROP TABLE IF EXISTS `cloud`.`s2s_customer_gateway`;
|
||||
DROP TABLE IF EXISTS `cloud`.`s2s_vpn_gateway`;
|
||||
DROP TABLE IF EXISTS `cloud`.`s2s_vpn_connection`;
|
||||
DROP TABLE IF EXISTS `cloud`,`external_nicira_nvp_devices`;
|
||||
DROP TABLE IF EXISTS `cloud`,`nicira_nvp_nic_map`;
|
||||
DROP TABLE IF EXISTS `cloud`,`s3`;
|
||||
DROP TABLE IF EXISTS `cloud`,`template_s3_ref`;
|
||||
DROP TABLE IF EXISTS `cloud`,`nicira_nvp_router_map`;
|
||||
DROP TABLE IF EXISTS `cloud`,`external_bigswitch_vns_devices`;
|
||||
DROP TABLE IF EXISTS `cloud`.`external_nicira_nvp_devices`;
|
||||
DROP TABLE IF EXISTS `cloud`.`nicira_nvp_nic_map`;
|
||||
DROP TABLE IF EXISTS `cloud`.`s3`;
|
||||
DROP TABLE IF EXISTS `cloud`.`template_s3_ref`;
|
||||
DROP TABLE IF EXISTS `cloud`.`nicira_nvp_router_map`;
|
||||
DROP TABLE IF EXISTS `cloud`.`external_bigswitch_vns_devices`;
|
||||
DROP TABLE IF EXISTS `cloud`.`autoscale_vmgroup_policy_map`;
|
||||
DROP TABLE IF EXISTS `cloud`.`autoscale_policy_condition_map`;
|
||||
DROP TABLE IF EXISTS `cloud`.`autoscale_vmgroups`;
|
||||
|
|
|
|||
Loading…
Reference in New Issue