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( 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( name: "Weight", table: "N_SportsTestCategory", type: "float", nullable: false, defaultValue: 0.0, comment: "权重"); } } }