mh_jy_safe/APT.Data.Migrations/Migrations/20260729040446_hmr2026072901.cs

47 lines
1.4 KiB
C#
Raw Normal View History

2026-07-29 14:00:18 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class hmr2026072901 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "FORM_NAME",
table: "T_BI_SAFETASK_FINISH",
type: "nvarchar(500)",
maxLength: 500,
nullable: true);
migrationBuilder.AddColumn<string>(
name: "FORM_STATUS",
table: "T_BI_SAFETASK_FINISH",
type: "nvarchar(500)",
maxLength: 500,
nullable: true);
migrationBuilder.AddColumn<int>(
name: "OVERTIME",
table: "T_BI_SAFETASK_FINISH",
type: "int",
nullable: false,
defaultValue: 0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "FORM_NAME",
table: "T_BI_SAFETASK_FINISH");
migrationBuilder.DropColumn(
name: "FORM_STATUS",
table: "T_BI_SAFETASK_FINISH");
migrationBuilder.DropColumn(
name: "OVERTIME",
table: "T_BI_SAFETASK_FINISH");
}
}
}