Files
hrm_eva/Migrations/20210406042734_AddMigrationField003.cs

34 lines
1.0 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class AddMigrationField003 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "employee_no_at_this_time",
table: "eva_adjust_postponement_detail",
maxLength: 1000,
nullable: true);
migrationBuilder.AddColumn<string>(
name: "fullname_at_this_time",
table: "eva_adjust_postponement_detail",
maxLength: 1000,
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "employee_no_at_this_time",
table: "eva_adjust_postponement_detail");
migrationBuilder.DropColumn(
name: "fullname_at_this_time",
table: "eva_adjust_postponement_detail");
}
}
}