1
0
mirror of https://github.com/bitwarden/server synced 2026-01-21 11:53:41 +00:00

organization signup apis and data model changes

This commit is contained in:
Kyle Spearrin
2017-03-03 00:07:11 -05:00
parent b18b6a44ef
commit 29e3605576
20 changed files with 371 additions and 131 deletions

View File

@@ -2,7 +2,12 @@
@Id UNIQUEIDENTIFIER,
@UserId UNIQUEIDENTIFIER,
@Name NVARCHAR(50),
@Plan TINYINT,
@Plan NVARCHAR(20),
@PlanType TINYINT,
@PlanPrice MONEY,
@PlanRenewalPrice MONEY,
@PlanRenewalDate DATETIME2(7),
@PlanTrial BIT,
@MaxUsers SMALLINT,
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
@@ -16,6 +21,11 @@ BEGIN
[UserId],
[Name],
[Plan],
[PlanType],
[PlanPrice],
[PlanRenewalPrice],
[PlanRenewalDate],
[PlanTrial],
[MaxUsers],
[CreationDate],
[RevisionDate]
@@ -26,6 +36,11 @@ BEGIN
@UserId,
@Name,
@Plan,
@PlanType,
@PlanPrice,
@PlanRenewalPrice,
@PlanRenewalDate,
@PlanTrial,
@MaxUsers,
@CreationDate,
@RevisionDate