1
0
mirror of https://github.com/bitwarden/server synced 2026-01-05 01:53:17 +00:00

Updates for devices

This commit is contained in:
Kyle Spearrin
2016-06-21 22:17:31 -04:00
parent a07a682831
commit 0e6fd21805
4 changed files with 7 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
@UserId UNIQUEIDENTIFIER,
@Name NVARCHAR(50),
@Type TINYINT,
@Identifier NVARCHAR(50),
@PushToken NVARCHAR(255),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
@@ -16,6 +17,7 @@ BEGIN
[UserId] = @UserId,
[Name] = @Name,
[Type] = @Type,
[Identifier] = @Identifier,
[PushToken] = @PushToken,
[CreationDate] = @CreationDate,
[RevisionDate] = @RevisionDate