Files
hrm_eva/Migrations/25631221144003_AddNewColumn01.cs

33 lines
987 B
C#

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