25 lines
672 B
C#
25 lines
672 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace APT.Data.Migrations.Migrations
|
|
{
|
|
public partial class wyw2026051101 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<Guid>(
|
|
name: "PARENT_ID",
|
|
table: "T_SE_NEW_USERS",
|
|
type: "uniqueidentifier",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "PARENT_ID",
|
|
table: "T_SE_NEW_USERS");
|
|
}
|
|
}
|
|
}
|