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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user