27 lines
695 B
C#
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");
|
|
}
|
|
}
|
|
}
|