using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Migrations.AppDb
{
///
public partial class AddGameBigImage : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Thumbnail",
table: "Game",
type: "nvarchar(500)",
maxLength: 500,
nullable: true,
comment: "작은 이미지 (목록 카드용)",
oldClrType: typeof(string),
oldType: "nvarchar(500)",
oldMaxLength: 500,
oldNullable: true);
migrationBuilder.AddColumn(
name: "BigImage",
table: "Game",
type: "nvarchar(500)",
maxLength: 500,
nullable: true,
comment: "큰 이미지 (상세/배너용)");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "BigImage",
table: "Game");
migrationBuilder.AlterColumn(
name: "Thumbnail",
table: "Game",
type: "nvarchar(500)",
maxLength: 500,
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(500)",
oldMaxLength: 500,
oldNullable: true,
oldComment: "작은 이미지 (목록 카드용)");
}
}
}