From daefe0d66b972e10db3f333729358490c9b52c9f Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 8 Nov 2017 12:36:27 -0500 Subject: [PATCH] rename plan to "Families" --- src/Core/Enums/PlanType.cs | 2 +- src/Core/Utilities/StaticStore.cs | 4 ++-- util/Setup/DbScripts/2017-11-06_00_FamilyPlanAdjustments.sql | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Core/Enums/PlanType.cs b/src/Core/Enums/PlanType.cs index 7b3495178..4381ec511 100644 --- a/src/Core/Enums/PlanType.cs +++ b/src/Core/Enums/PlanType.cs @@ -3,7 +3,7 @@ public enum PlanType : byte { Free = 0, - FamilyAnnually = 1, + FamiliesAnnually = 1, TeamsMonthly = 2, TeamsAnnually = 3, EnterpriseMonthly = 4, diff --git a/src/Core/Utilities/StaticStore.cs b/src/Core/Utilities/StaticStore.cs index 743c45484..7f9bbeb11 100644 --- a/src/Core/Utilities/StaticStore.cs +++ b/src/Core/Utilities/StaticStore.cs @@ -101,11 +101,11 @@ namespace Bit.Core.Utilities }, new Plan { - Type = PlanType.FamilyAnnually, + Type = PlanType.FamiliesAnnually, BaseSeats = 5, BasePrice = 12, CanBuyAdditionalSeats = false, - Name = "Family", + Name = "Families", StripePlanId = "personal-org-annually", StripStoragePlanId = "storage-gb-annually", UpgradeSortOrder = 1, diff --git a/util/Setup/DbScripts/2017-11-06_00_FamilyPlanAdjustments.sql b/util/Setup/DbScripts/2017-11-06_00_FamilyPlanAdjustments.sql index 1bc25d753..595d662f0 100644 --- a/util/Setup/DbScripts/2017-11-06_00_FamilyPlanAdjustments.sql +++ b/util/Setup/DbScripts/2017-11-06_00_FamilyPlanAdjustments.sql @@ -16,7 +16,7 @@ GO UPDATE [dbo].[Organization] SET - [Plan] = 'Family' + [Plan] = 'Families' WHERE [PlanType] = 1 GO