1
0
mirror of https://github.com/bitwarden/server synced 2026-01-19 17:03:16 +00:00

cipher share data and key response

This commit is contained in:
Kyle Spearrin
2017-02-18 01:17:09 -05:00
parent f7be17d1c5
commit 2b72197f0a
13 changed files with 105 additions and 34 deletions

View File

@@ -5,6 +5,7 @@
@Type TINYINT,
@Favorite BIT,
@Data NVARCHAR(MAX),
@Shares NVARCHAR(MAX),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
AS
@@ -19,6 +20,7 @@ BEGIN
[Type] = @Type,
[Favorite] = @Favorite,
[Data] = @Data,
[Shares] = @Shares,
[CreationDate] = @CreationDate,
[RevisionDate] = @RevisionDate
WHERE