mh_custom/wtmProject.DataAccess/Migrations/20240401035324_hmr2024040102.cs
2024-05-17 13:43:36 +08:00

46 lines
1.2 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace wtmProject.DataAccess.Migrations
{
public partial class hmr2024040102 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "EnterprisesType",
table: "WTM_CUSTOM",
type: "int",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "IndustryType",
table: "WTM_CUSTOM",
type: "int",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "IndustryType",
table: "WTM_BUSINESS",
type: "int",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "EnterprisesType",
table: "WTM_CUSTOM");
migrationBuilder.DropColumn(
name: "IndustryType",
table: "WTM_CUSTOM");
migrationBuilder.DropColumn(
name: "IndustryType",
table: "WTM_BUSINESS");
}
}
}