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