mirror of
https://github.com/bitwarden/server
synced 2026-01-04 09:33:40 +00:00
Key Connector feature toggle (#1716)
This commit is contained in:
@@ -40,7 +40,8 @@
|
||||
@CreationDate DATETIME2(7),
|
||||
@RevisionDate DATETIME2(7),
|
||||
@OwnersNotifiedOfAutoscaling DATETIME2(7),
|
||||
@MaxAutoscaleSeats INT
|
||||
@MaxAutoscaleSeats INT,
|
||||
@UseKeyConnector BIT = 0
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
@@ -88,7 +89,8 @@ BEGIN
|
||||
[CreationDate],
|
||||
[RevisionDate],
|
||||
[OwnersNotifiedOfAutoscaling],
|
||||
[MaxAutoscaleSeats]
|
||||
[MaxAutoscaleSeats],
|
||||
[UseKeyConnector]
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
@@ -133,6 +135,7 @@ BEGIN
|
||||
@CreationDate,
|
||||
@RevisionDate,
|
||||
@OwnersNotifiedOfAutoscaling,
|
||||
@MaxAutoscaleSeats
|
||||
@MaxAutoscaleSeats,
|
||||
@UseKeyConnector
|
||||
)
|
||||
END
|
||||
|
||||
Reference in New Issue
Block a user