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