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