Skip to content

Commit

Permalink
Merge pull request #619 from MissionCriticalCloud/fix/vpc-offering-vo…
Browse files Browse the repository at this point in the history
…-redundant

Correct redundant router column name
  • Loading branch information
remibergsma authored Feb 7, 2018
2 parents 162effb + e0bdf72 commit 7da6641
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Rename unused colums vpc_offerings table
ALTER TABLE `vpc_offerings`
DROP COLUMN `supports_distributed_router`,
DROP COLUMN `supports_region_level_vpc`;
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class VpcOfferingVO implements VpcOffering {
Long serviceOfferingId;
@Column(name = "secondary_service_offering_id")
Long secondaryServiceOfferingId;
@Column(name = "supports_distributed_router")
@Column(name = "redundant_router_service")
boolean redundantRouter = false;
@Column(name = "uuid")
private String uuid;
Expand Down

0 comments on commit 7da6641

Please sign in to comment.