40 lines
1.1 KiB
C#
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: "权重");
|
|
}
|
|
}
|
|
}
|