using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
///
public partial class ImageBack : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "ApplyReason",
table: "SubjectVisitImageBackRecord",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "ResultRemark",
table: "SubjectVisitImageBackRecord",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ApplyReason",
table: "SubjectVisitImageBackRecord");
migrationBuilder.DropColumn(
name: "ResultRemark",
table: "SubjectVisitImageBackRecord");
}
}
}