2021-07-21 18:47:11 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
|
|
|
namespace Bit.PostgresMigrations.Migrations;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2021-07-21 18:47:11 +02:00
|
|
|
|
public partial class UserForcePasswordReset : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
|
|
|
name: "ForcePasswordReset",
|
|
|
|
|
table: "User",
|
|
|
|
|
type: "boolean",
|
|
|
|
|
nullable: false,
|
|
|
|
|
defaultValue: false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "ForcePasswordReset",
|
|
|
|
|
table: "User");
|
|
|
|
|
}
|
|
|
|
|
}
|