YD_SmartSports.Api/VOL.Core/Migrations/20250222093211_20250222v2.cs
2025-06-06 16:55:14 +08:00

40 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250222v2 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Weight",
table: "N_SportsTestCategory");
migrationBuilder.AddColumn<double>(
name: "Weight",
table: "S_GradeAssocCategory",
type: "float",
nullable: false,
defaultValue: 0.0,
comment: "权重");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Weight",
table: "S_GradeAssocCategory");
migrationBuilder.AddColumn<double>(
name: "Weight",
table: "N_SportsTestCategory",
type: "float",
nullable: false,
defaultValue: 0.0,
comment: "权重");
}
}
}