This commit is contained in:
wyw 2026-05-28 11:38:38 +08:00
parent f463f43b7d
commit 79dd03a619
2 changed files with 2476 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,35 @@
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");
}
}
}