using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace wtmProject.DataAccess.Migrations { public partial class hmr2026021201 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsValid", table: "WTM_PROJECT", type: "bit", nullable: true); migrationBuilder.AddColumn( 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"); } } }