1
0
mirror of https://github.com/bitwarden/server synced 2026-01-19 08:53:57 +00:00

favorite updates to sqlproj

This commit is contained in:
Kyle Spearrin
2016-06-09 19:07:27 -04:00
parent 0a8d6ca6e1
commit cbb0c392bc
5 changed files with 8 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
@UserId UNIQUEIDENTIFIER,
@FolderId UNIQUEIDENTIFIER,
@Type TINYINT,
@Favorite BIT,
@Data NVARCHAR(MAX),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
@@ -16,6 +17,7 @@ BEGIN
[UserId] = @UserId,
[FolderId] = @FolderId,
[Type] = @Type,
[Favorite] = @Favorite,
[Data] = @Data,
[CreationDate] = @CreationDate,
[RevisionDate] = @RevisionDate