38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
![]() |
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|