Files
hrm_eva/Migrations/25640309111615_UpdateEmployeeLimitFrame.cs

23 lines
639 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class UpdateEmployeeLimitFrame : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "help_org_id",
table: "eva_limit_frame_employee",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "help_org_id",
table: "eva_limit_frame_employee");
}
}
}