using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
///
public partial class addSubjectReson : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "SuspendReason",
table: "Subject",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "",
comment: "访视中止原因");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SuspendReason",
table: "Subject");
}
}
}