YD_SmartSports.Api/VOL.Core/Migrations/20240821142736_init039.cs
2025-06-06 16:00:39 +08:00

27 lines
742 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class init039 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<double>(
name: "AdditionalScore",
table: "N_SportsTestValue",
type: "float",
nullable: false,
defaultValue: 0.0,
comment: "附加分");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AdditionalScore",
table: "N_SportsTestValue");
}
}
}