24 lines
672 B
C#
24 lines
672 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace tb320eva.Migrations
|
|
{
|
|
public partial class UpdateRemarkToEvaDetail : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "remark",
|
|
table: "eva_create_evaluation_detail",
|
|
maxLength: 1000,
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "remark",
|
|
table: "eva_create_evaluation_detail");
|
|
}
|
|
}
|
|
}
|