1
0
mirror of https://github.com/bitwarden/server synced 2026-01-10 20:44:05 +00:00

Added RevisionDate to User table/domain

This commit is contained in:
Kyle Spearrin
2016-02-21 00:36:08 -05:00
parent 1b3acec905
commit 5d7a0216bf
7 changed files with 26 additions and 14 deletions

View File

@@ -9,7 +9,8 @@
@TwoFactorEnabled BIT,
@TwoFactorProvider TINYINT,
@AuthenticatorKey NVARCHAR(50),
@CreationDate DATETIME2(7)
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7)
AS
BEGIN
INSERT INTO [dbo].[User]
@@ -24,7 +25,8 @@ BEGIN
[TwoFactorEnabled],
[TwoFactorProvider],
[AuthenticatorKey],
[CreationDate]
[CreationDate],
[RevisionDate]
)
VALUES
(
@@ -38,6 +40,7 @@ BEGIN
@TwoFactorEnabled,
@TwoFactorProvider,
@AuthenticatorKey,
@CreationDate
@CreationDate,
@RevisionDate
)
END