mh_jy_safe/APT.Data.Migrations/Migrations/20250805010240_hmr2025080501.cs
2025-08-25 09:56:57 +08:00

42 lines
1.2 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class hmr2025080501 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "MineType",
table: "T_SK_RISK_AREA",
type: "int",
nullable: true);
migrationBuilder.AlterColumn<int>(
name: "EVALUATE_LEVEL",
table: "T_HM_OPERATION_LINK",
type: "int",
nullable: true,
oldClrType: typeof(int),
oldType: "int");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "MineType",
table: "T_SK_RISK_AREA");
migrationBuilder.AlterColumn<int>(
name: "EVALUATE_LEVEL",
table: "T_HM_OPERATION_LINK",
type: "int",
nullable: false,
defaultValue: 0,
oldClrType: typeof(int),
oldType: "int",
oldNullable: true);
}
}
}