1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

add renewal reminder date prop to users

This commit is contained in:
Kyle Spearrin
2018-07-12 17:35:01 -04:00
parent 0524630c33
commit 476ee53931
5 changed files with 35 additions and 1 deletions

View File

@ -17,6 +17,7 @@
@PrivateKey NVARCHAR(MAX),
@Premium BIT,
@PremiumExpirationDate DATETIME2(7),
@RenewalReminderDate DATETIME2(7),
@Storage BIGINT,
@MaxStorageGb SMALLINT,
@Gateway TINYINT,
@ -49,6 +50,7 @@ BEGIN
[PrivateKey],
[Premium],
[PremiumExpirationDate],
[RenewalReminderDate],
[Storage],
[MaxStorageGb],
[Gateway],
@ -78,6 +80,7 @@ BEGIN
@PrivateKey,
@Premium,
@PremiumExpirationDate,
@RenewalReminderDate,
@Storage,
@MaxStorageGb,
@Gateway,