using System; using Microsoft.EntityFrameworkCore.Migrations; namespace APT.Data.Migrations.Migrations { public partial class wyw2026060901 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ORG_ID_NEW", table: "T_FM_USER_TRANSFER", type: "uniqueidentifier", nullable: true); migrationBuilder.AddColumn( name: "STATUS", table: "T_FM_USER_TRANSFER", type: "int", nullable: false, defaultValue: 0); migrationBuilder.AddColumn( name: "ISTRANSFER", table: "T_FM_USER", type: "bit", nullable: false, defaultValue: false); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ORG_ID_NEW", table: "T_FM_USER_TRANSFER"); migrationBuilder.DropColumn( name: "STATUS", table: "T_FM_USER_TRANSFER"); migrationBuilder.DropColumn( name: "ISTRANSFER", table: "T_FM_USER"); } } }