Skip to content

Commit

Permalink
Correct redundant router column name
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Schrijver committed Feb 6, 2018
1 parent a4eec2f commit e0bdf72
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 e0bdf72

Please sign in to comment.