36 lines
957 B
C#
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");
|
|
}
|
|
}
|
|
}
|