mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
69511160cb
* EC-400 Clean up code regarding Unknown Device Verification * EC-400 Fix formatting
26 lines
679 B
C#
26 lines
679 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Bit.MySqlMigrations.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<bool>(
|
|
name: "UnknownDeviceVerificationEnabled",
|
|
table: "User",
|
|
type: "tinyint(1)",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
}
|