using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace VOL.Core.Migrations { public partial class _20250120v1 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Height", table: "N_SportsTestValue", type: "float", nullable: true, comment: "身高"); migrationBuilder.AddColumn( name: "Weight", table: "N_SportsTestValue", type: "float", nullable: true, comment: "体重"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Height", table: "N_SportsTestValue"); migrationBuilder.DropColumn( name: "Weight", table: "N_SportsTestValue"); } } }