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