mh_custom/wtmProject.DataAccess/Migrations/20260212005744_hmr2026021201.cs
2026-05-28 11:38:38 +08:00

36 lines
957 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace wtmProject.DataAccess.Migrations
{
public partial class hmr2026021201 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsValid",
table: "WTM_PROJECT",
type: "bit",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "UserType",
table: "FrameworkUsers",
type: "int",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsValid",
table: "WTM_PROJECT");
migrationBuilder.DropColumn(
name: "UserType",
table: "FrameworkUsers");
}
}
}