2021-11-17 11:46:35 +01:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
|
|
|
namespace Bit.MySqlMigrations.Migrations;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-11-17 11:46:35 +01:00
|
|
|
|
public partial class KeyConnectorFlag : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
|
|
|
name: "UseKeyConnector",
|
|
|
|
|
table: "Organization",
|
|
|
|
|
type: "tinyint(1)",
|
|
|
|
|
nullable: false,
|
|
|
|
|
defaultValue: false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "UseKeyConnector",
|
|
|
|
|
table: "Organization");
|
|
|
|
|
}
|
|
|
|
|
}
|