mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
AccountRevisionDate to track changes for a user account. Managed via triggers.
This commit is contained in:
@ -13,6 +13,7 @@
|
||||
@TwoFactorRecoveryCode NVARCHAR(32),
|
||||
@EquivalentDomains NVARCHAR(MAX),
|
||||
@ExcludedGlobalEquivalentDomains NVARCHAR(MAX),
|
||||
@AccountRevisionDate DATETIME2(7),
|
||||
@CreationDate DATETIME2(7),
|
||||
@RevisionDate DATETIME2(7)
|
||||
AS
|
||||
@ -35,6 +36,7 @@ BEGIN
|
||||
[TwoFactorRecoveryCode],
|
||||
[EquivalentDomains],
|
||||
[ExcludedGlobalEquivalentDomains],
|
||||
[AccountRevisionDate],
|
||||
[CreationDate],
|
||||
[RevisionDate]
|
||||
)
|
||||
@ -54,6 +56,7 @@ BEGIN
|
||||
@TwoFactorRecoveryCode,
|
||||
@EquivalentDomains,
|
||||
@ExcludedGlobalEquivalentDomains,
|
||||
@AccountRevisionDate,
|
||||
@CreationDate,
|
||||
@RevisionDate
|
||||
)
|
||||
|
Reference in New Issue
Block a user