YD_SmartSports.Api/VOL.Core/Migrations/20240830022730_init053.cs
2025-06-06 16:00:39 +08:00

27 lines
702 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class init053 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "Age",
table: "G_EntryStudent",
type: "int",
nullable: false,
defaultValue: 0,
comment: "年龄");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Age",
table: "G_EntryStudent");
}
}
}