using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
///
public partial class nonedicomMask : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "IsMasked",
table: "NoneDicomStudyFile",
type: "bit",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn(
name: "IsNeedResetPwd",
table: "IdentityUser",
type: "bit",
nullable: false,
defaultValue: false);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsMasked",
table: "NoneDicomStudyFile");
migrationBuilder.DropColumn(
name: "IsNeedResetPwd",
table: "IdentityUser");
}
}
}