using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.SqliteMigrations.Migrations; public partial class RemoveDeviceUnknownVerification : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "UnknownDeviceVerificationEnabled", table: "User"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "UnknownDeviceVerificationEnabled", table: "User", type: "INTEGER", nullable: false, defaultValue: false); } }