2、添加组织调整 表单 3、人员启用 添加判断 4、三级安全教育 默认为线下培训 (前端隐藏) 5、人员导入 修改工号去重判断 6、T4 模板替换(奇怪 文本完全一样 生成文件不一样)
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace APT.Data.Migrations.Migrations
|
|
{
|
|
public partial class wyw2026060902 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<Guid>(
|
|
name: "USER_ID",
|
|
table: "T_FM_USER_TRANSFER",
|
|
type: "uniqueidentifier",
|
|
nullable: false,
|
|
defaultValue: new Guid("00000000-0000-0000-0000-000000000000"));
|
|
|
|
migrationBuilder.AddColumn<Guid>(
|
|
name: "USER_ID_OLD",
|
|
table: "T_FM_USER_TRANSFER",
|
|
type: "uniqueidentifier",
|
|
nullable: false,
|
|
defaultValue: new Guid("00000000-0000-0000-0000-000000000000"));
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "USER_ID",
|
|
table: "T_FM_USER_TRANSFER");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "USER_ID_OLD",
|
|
table: "T_FM_USER_TRANSFER");
|
|
}
|
|
}
|
|
}
|