mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 00:52:49 -05:00
equivalent domains APIs and data models
This commit is contained in:
@ -11,6 +11,8 @@
|
||||
@TwoFactorProvider TINYINT,
|
||||
@AuthenticatorKey NVARCHAR(50),
|
||||
@TwoFactorRecoveryCode NVARCHAR(32),
|
||||
@EquivalentDomains NVARCHAR(MAX),
|
||||
@ExcludedGlobalEquivalentDomains NVARCHAR(MAX),
|
||||
@CreationDate DATETIME2(7),
|
||||
@RevisionDate DATETIME2(7)
|
||||
AS
|
||||
@ -31,6 +33,8 @@ BEGIN
|
||||
[TwoFactorProvider],
|
||||
[AuthenticatorKey],
|
||||
[TwoFactorRecoveryCode],
|
||||
[EquivalentDomains],
|
||||
[ExcludedGlobalEquivalentDomains],
|
||||
[CreationDate],
|
||||
[RevisionDate]
|
||||
)
|
||||
@ -48,6 +52,8 @@ BEGIN
|
||||
@TwoFactorProvider,
|
||||
@AuthenticatorKey,
|
||||
@TwoFactorRecoveryCode,
|
||||
@EquivalentDomains,
|
||||
@ExcludedGlobalEquivalentDomains,
|
||||
@CreationDate,
|
||||
@RevisionDate
|
||||
)
|
||||
|
Reference in New Issue
Block a user