34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace tb320eva.Migrations
|
|
{
|
|
public partial class status_supervisor1A2A : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "status_supervisor1A",
|
|
table: "eva_create_evaluation_detail",
|
|
maxLength: 1,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "status_supervisor2A",
|
|
table: "eva_create_evaluation_detail",
|
|
maxLength: 1,
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "status_supervisor1A",
|
|
table: "eva_create_evaluation_detail");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "status_supervisor2A",
|
|
table: "eva_create_evaluation_detail");
|
|
}
|
|
}
|
|
}
|