1
0
mirror of https://github.com/bitwarden/server synced 2026-01-18 16:33:29 +00:00

added new expiration columns to org/users

This commit is contained in:
Kyle Spearrin
2017-08-12 10:43:52 -04:00
parent 46e5cd6486
commit 55ae6f12ad
8 changed files with 14 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
@PublicKey NVARCHAR(MAX),
@PrivateKey NVARCHAR(MAX),
@Premium BIT,
@PremiumExpirationDate DATETIME2(7),
@Storage BIGINT,
@MaxStorageGb SMALLINT,
@Gateway TINYINT,
@@ -47,6 +48,7 @@ BEGIN
[PublicKey] = @PublicKey,
[PrivateKey] = @PrivateKey,
[Premium] = @Premium,
[PremiumExpirationDate] = @PremiumExpirationDate,
[Storage] = @Storage,
[MaxStorageGb] = @MaxStorageGb,
[Gateway] = @Gateway,