เพิ่มฟิลหน่วยงาน ณ วันปรับเลื่อน

This commit is contained in:
Nakorn Rientrakrunchai
2020-12-13 08:45:52 +07:00
parent b205e0e302
commit 6302e828f2
12 changed files with 758 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class AddOrgField : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "org_at_this_time",
table: "eva_adjust_postponement_detail",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "org_at_this_time",
table: "eva_adjust_postponement_detail");
}
}
}