YD_SmartSports.Api/VOL.Core/Migrations/20250515165858_20250515v2.cs
2025-06-06 16:55:14 +08:00

28 lines
713 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250515v2 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "UnitType",
table: "Y_Stadium",
type: "int",
nullable: false,
defaultValue: 0,
comment: "单位类型");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "UnitType",
table: "Y_Stadium");
}
}
}