mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
25 lines
697 B
C#
25 lines
697 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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|