mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
24 lines
623 B
C#
24 lines
623 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Bit.MySqlMigrations.Migrations;
|
|
|
|
public partial class UserForcePasswordReset : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "ForcePasswordReset",
|
|
table: "User",
|
|
type: "tinyint(1)",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ForcePasswordReset",
|
|
table: "User");
|
|
}
|
|
}
|