YD_SmartSports.Api/VOL.Core/Migrations/20250220063146_20250120v1.cs

38 lines
1.0 KiB
C#
Raw Permalink Normal View History

2025-06-06 16:55:14 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250120v1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<double>(
name: "Height",
table: "N_SportsTestValue",
type: "float",
nullable: true,
comment: "身高");
migrationBuilder.AddColumn<double>(
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");
}
}
}