2022-06-06 19:52:50 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
|
|
|
namespace Bit.PostgresMigrations.Migrations;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-06-06 19:52:50 +02:00
|
|
|
|
public partial class DeviceUnknownVerification : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
|
|
|
name: "UnknownDeviceVerificationEnabled",
|
|
|
|
|
table: "User",
|
|
|
|
|
type: "boolean",
|
|
|
|
|
nullable: false,
|
|
|
|
|
defaultValue: true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "UnknownDeviceVerificationEnabled",
|
|
|
|
|
table: "User");
|
|
|
|
|
}
|
|
|
|
|
}
|