mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
PM-15091 Add Feature Flag to DB called UseRiskInsights (#5088)
Add a new column called UseRiskInsights to `dbo.Organization`
This commit is contained in:
@ -186,6 +186,9 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
b.Property<bool>("UseResetPassword")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool>("UseRiskInsights")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool>("UseScim")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
|
Reference in New Issue
Block a user