23 lines
627 B
C#
23 lines
627 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace tb320eva.Migrations
|
|
{
|
|
public partial class UpdateLimitFrame : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "main_dept_id",
|
|
table: "eva_limit_frame_group",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "main_dept_id",
|
|
table: "eva_limit_frame_group");
|
|
}
|
|
}
|
|
}
|