using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Infrastructure.Migrations.AppDb { /// public partial class AddProductMinMaxPurchase : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "MaxPurchase", table: "Product", type: "int", nullable: false, defaultValue: 999, comment: "1회 주문 최대 구매 수량 (하드 상한 999)"); migrationBuilder.AddColumn( name: "MinPurchase", table: "Product", type: "int", nullable: false, defaultValue: 1, comment: "1회 주문 최소 구매 수량"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "MaxPurchase", table: "Product"); migrationBuilder.DropColumn( name: "MinPurchase", table: "Product"); } } }