mh_jy_safe/APT.Data.Migrations/Migrations/20260114085739_wyw20260114.cs
2026-01-15 14:35:14 +08:00

36 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class wyw20260114 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<decimal>(
name: "SCOREPER",
table: "T_SE_COURSEWEARLIBRARY_DETAIL",
type: "decimal(18,2)",
nullable: false,
defaultValue: 0m);
migrationBuilder.AddColumn<decimal>(
name: "SCOREPASS",
table: "T_SE_COURSEWEARLIBRARY",
type: "decimal(18,2)",
nullable: false,
defaultValue: 0m);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SCOREPER",
table: "T_SE_COURSEWEARLIBRARY_DETAIL");
migrationBuilder.DropColumn(
name: "SCOREPASS",
table: "T_SE_COURSEWEARLIBRARY");
}
}
}