diff --git a/src/Core/Enums/PlanType.cs b/src/Core/Enums/PlanType.cs index 7b34951783..4381ec511a 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 743c454841..7f9bbeb11a 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 1bc25d7535..595d662f0d 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