mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
Key Connector feature toggle (#1716)
This commit is contained in:
1507
util/PostgresMigrations/Migrations/20211115142623_KeyConnectorFlag.Designer.cs
generated
Normal file
1507
util/PostgresMigrations/Migrations/20211115142623_KeyConnectorFlag.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,24 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace Bit.PostgresMigrations.Migrations
|
||||
{
|
||||
public partial class KeyConnectorFlag : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "UseKeyConnector",
|
||||
table: "Organization",
|
||||
type: "boolean",
|
||||
nullable: false,
|
||||
defaultValue: false);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "UseKeyConnector",
|
||||
table: "Organization");
|
||||
}
|
||||
}
|
||||
}
|
@ -569,6 +569,9 @@ namespace Bit.PostgresMigrations.Migrations
|
||||
b.Property<bool>("UseGroups")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("UseKeyConnector")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("UsePolicies")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
|
Binary file not shown.
Reference in New Issue
Block a user