ปรับปรุงหลายข้อ
This commit is contained in:
1089
Migrations/20210914074108_UpdateRemarkToPlan.Designer.cs
generated
Normal file
1089
Migrations/20210914074108_UpdateRemarkToPlan.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
Migrations/20210914074108_UpdateRemarkToPlan.cs
Normal file
23
Migrations/20210914074108_UpdateRemarkToPlan.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace tb320eva.Migrations
|
||||
{
|
||||
public partial class UpdateRemarkToPlan : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "remark",
|
||||
table: "eva_performance_plan",
|
||||
maxLength: 500,
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "remark",
|
||||
table: "eva_performance_plan");
|
||||
}
|
||||
}
|
||||
}
|
||||
1092
Migrations/20210914083030_UpdateRemarkToEvaDetail.Designer.cs
generated
Normal file
1092
Migrations/20210914083030_UpdateRemarkToEvaDetail.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
Migrations/20210914083030_UpdateRemarkToEvaDetail.cs
Normal file
23
Migrations/20210914083030_UpdateRemarkToEvaDetail.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -298,6 +298,9 @@ namespace tb320eva.Migrations
|
||||
|
||||
b.Property<int?>("order_of_data");
|
||||
|
||||
b.Property<string>("remark")
|
||||
.HasMaxLength(1000);
|
||||
|
||||
b.Property<decimal?>("score_chief");
|
||||
|
||||
b.Property<decimal?>("score_supervisor");
|
||||
@@ -851,6 +854,9 @@ namespace tb320eva.Migrations
|
||||
|
||||
b.Property<decimal?>("percent");
|
||||
|
||||
b.Property<string>("remark")
|
||||
.HasMaxLength(500);
|
||||
|
||||
b.Property<DateTime?>("start_leave");
|
||||
|
||||
b.Property<int?>("theTime");
|
||||
|
||||
Reference in New Issue
Block a user