44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace tb320eva.Migrations
|
|
{
|
|
public partial class NewStatus02 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "status_chief",
|
|
table: "eva_create_evaluation_detail",
|
|
maxLength: 1,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "status_self",
|
|
table: "eva_create_evaluation_detail",
|
|
maxLength: 1,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "status_supervisor",
|
|
table: "eva_create_evaluation_detail",
|
|
maxLength: 1,
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "status_chief",
|
|
table: "eva_create_evaluation_detail");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "status_self",
|
|
table: "eva_create_evaluation_detail");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "status_supervisor",
|
|
table: "eva_create_evaluation_detail");
|
|
}
|
|
}
|
|
}
|