mh_custom/wtmProject.DataAccess/Migrations/20240712073423_hmr2024071201.cs

46 lines
1.3 KiB
C#
Raw Permalink Normal View History

2026-01-06 10:55:05 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace wtmProject.DataAccess.Migrations
{
public partial class hmr2024071201 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ERPCode",
table: "WTM_CONTRACT",
type: "nvarchar(max)",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "ERPName",
table: "WTM_CONTRACT",
type: "nvarchar(max)",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "Year",
table: "WTM_CONTRACT",
type: "nvarchar(max)",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ERPCode",
table: "WTM_CONTRACT");
migrationBuilder.DropColumn(
name: "ERPName",
table: "WTM_CONTRACT");
migrationBuilder.DropColumn(
name: "Year",
table: "WTM_CONTRACT");
}
}
}