mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
[EC-343] Add constraint to Organization table to have default UseCustomPermissions value
This commit is contained in:
@ -42,7 +42,7 @@
|
|||||||
[MaxAutoscaleSeats] INT NULL,
|
[MaxAutoscaleSeats] INT NULL,
|
||||||
[UseKeyConnector] BIT NOT NULL,
|
[UseKeyConnector] BIT NOT NULL,
|
||||||
[UseScim] BIT NOT NULL CONSTRAINT [DF_Organization_UseScim] DEFAULT (0),
|
[UseScim] BIT NOT NULL CONSTRAINT [DF_Organization_UseScim] DEFAULT (0),
|
||||||
[UseCustomPermissions] BIT NOT NULL,
|
[UseCustomPermissions] BIT NOT NULL CONSTRAINT [DF_Organization_UseCustomPermissions] DEFAULT (0),
|
||||||
CONSTRAINT [PK_Organization] PRIMARY KEY CLUSTERED ([Id] ASC)
|
CONSTRAINT [PK_Organization] PRIMARY KEY CLUSTERED ([Id] ASC)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user