using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Infrastructure.Migrations.AppDb { /// public partial class ExpandGameCommissionRatePrecision : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CommissionRate", table: "Game", type: "decimal(10,7)", precision: 10, scale: 7, nullable: false, comment: "게임사 수익률(%) — 0~100, 소수점 7자리", oldClrType: typeof(decimal), oldType: "decimal(5,2)", oldPrecision: 5, oldScale: 2, oldComment: "게임사 수익률(%)"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "CommissionRate", table: "Game", type: "decimal(5,2)", precision: 5, scale: 2, nullable: false, comment: "게임사 수익률(%)", oldClrType: typeof(decimal), oldType: "decimal(10,7)", oldPrecision: 10, oldScale: 7, oldComment: "게임사 수익률(%) — 0~100, 소수점 7자리"); } } }