YD_SmartSports.Api/VOL.Core/Migrations/20250225012718_20250225v1.cs

27 lines
710 B
C#
Raw Normal View History

2025-06-06 16:55:14 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250225v1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "CategoryEnum",
table: "XW_TestingProject",
type: "nvarchar(100)",
nullable: true,
comment: "枚举");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "CategoryEnum",
table: "XW_TestingProject");
}
}
}