25 lines
685 B
C#
25 lines
685 B
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
namespace APT.Data.Migrations.Migrations
|
|||
|
|
{
|
|||
|
|
public partial class wyw2025102101 : Migration
|
|||
|
|
{
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AddColumn<bool>(
|
|||
|
|
name: "ISHEAD",
|
|||
|
|
table: "T_PF_APPROVAL_ROLE",
|
|||
|
|
type: "bit",
|
|||
|
|
nullable: false,
|
|||
|
|
defaultValue: false);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropColumn(
|
|||
|
|
name: "ISHEAD",
|
|||
|
|
table: "T_PF_APPROVAL_ROLE");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|