mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
24 lines
623 B
C#
24 lines
623 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Bit.PostgresMigrations.Migrations;
|
|
|
|
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");
|
|
}
|
|
}
|