YD_SmartSports.Api/VOL.Core/Migrations/20240827145147_init050.cs

66 lines
2.0 KiB
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class init050 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ImagePath",
table: "G_Activities",
type: "nvarchar(2000)",
nullable: true,
comment: "图片路径");
migrationBuilder.AlterColumn<int>(
name: "StartGrade",
table: "Ai_SpecialUnit",
type: "int",
nullable: false,
comment: "开始等级",
oldClrType: typeof(int),
oldType: "int",
oldComment: "开始年级");
migrationBuilder.AlterColumn<int>(
name: "EndGrade",
table: "Ai_SpecialUnit",
type: "int",
nullable: false,
comment: "结束等级",
oldClrType: typeof(int),
oldType: "int",
oldComment: "结束年级");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ImagePath",
table: "G_Activities");
migrationBuilder.AlterColumn<int>(
name: "StartGrade",
table: "Ai_SpecialUnit",
type: "int",
nullable: false,
comment: "开始年级",
oldClrType: typeof(int),
oldType: "int",
oldComment: "开始等级");
migrationBuilder.AlterColumn<int>(
name: "EndGrade",
table: "Ai_SpecialUnit",
type: "int",
nullable: false,
comment: "结束年级",
oldClrType: typeof(int),
oldType: "int",
oldComment: "结束等级");
}
}
}