| 123456789101112131415161718192021222324252627282930 |
- using Microsoft.EntityFrameworkCore.Migrations;
- #nullable disable
- namespace Infrastructure.Migrations.AppDb
- {
- /// <inheritdoc />
- public partial class AddProductRequireDonationChannel : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<bool>(
- name: "RequireDonationChannel",
- table: "Product",
- type: "bit",
- nullable: false,
- defaultValue: false,
- comment: "구매 시 후원 채널 선택 필수 여부");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "RequireDonationChannel",
- table: "Product");
- }
- }
- }
|