mh_jy_safe/APT.Data.Migrations/Migrations/20251126150008_wyw2025112601.cs
wyw ee2b7725fc 1、培训计划明细添加是否直接触发培训记录字段
2、培训计划审批结束时 对字段初始化
3、跑批修改加入 初始化触发搜索  触发表单并修改值
2025-11-26 23:06:08 +08:00

25 lines
699 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class wyw2025112601 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "ISNEEDINI",
table: "T_SE_TRAIN_PLAN_DETAIL",
type: "bit",
nullable: false,
defaultValue: false);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ISNEEDINI",
table: "T_SE_TRAIN_PLAN_DETAIL");
}
}
}