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