1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

database adjustments and storage for attachments

This commit is contained in:
Kyle Spearrin
2017-06-30 14:41:57 -04:00
parent 6cea556ae1
commit 284078e946
17 changed files with 178 additions and 23 deletions

View File

@ -15,6 +15,9 @@
@Key NVARCHAR(MAX),
@PublicKey NVARCHAR(MAX),
@PrivateKey NVARCHAR(MAX),
@Premium BIT,
@Storage BIGINT,
@MaxStorageGb SMALLINT,
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
AS
@ -39,6 +42,9 @@ BEGIN
[Key],
[PublicKey],
[PrivateKey],
[Premium],
[Storage],
[MaxStorageGb],
[CreationDate],
[RevisionDate]
)
@ -60,6 +66,9 @@ BEGIN
@Key,
@PublicKey,
@PrivateKey,
@Premium,
@Storage,
@MaxStorageGb,
@CreationDate,
@RevisionDate
)