| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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,
- oldComment: "작은 이미지 (목록 카드용)");
- 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: "작은 이미지 (목록 카드용)");
- }
- }
- }
|