mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6582 updated the table network_acl_item_cidrs name in Upgrade430to440
This commit is contained in:
parent
4b89a45e57
commit
d57975c7ed
|
|
@ -266,7 +266,7 @@ public class Upgrade430to440 implements DbUpgrade {
|
|||
// split it
|
||||
String[] cidrArray = cidrList.split(",");
|
||||
// insert a record per cidr
|
||||
String networkAclItemCidrSql = "INSERT INTO `cloud`.`network_acl_item_cidr` (network_acl_item_id, cidr) VALUES (?,?)";
|
||||
String networkAclItemCidrSql = "INSERT INTO `cloud`.`network_acl_item_cidrs` (network_acl_item_id, cidr) VALUES (?,?)";
|
||||
for(String cidr: cidrArray)
|
||||
{
|
||||
pstmtCidr = conn.prepareStatement(networkAclItemCidrSql);
|
||||
|
|
|
|||
Loading…
Reference in New Issue