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

27 lines
695 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20250101v1 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ImageUrl",
table: "Ai_Special",
type: "nvarchar(2000)",
nullable: true,
comment: "图片地址");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ImageUrl",
table: "Ai_Special");
}
}
}