using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Migrations.AppDb
{
///
public partial class AddWithdrawVerifyEmailTemplateAndConfigDefaultsCleanup : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "EmailTemplate_WithdrawVerifyEmailFormContent",
table: "Config",
type: "nvarchar(max)",
nullable: true,
comment: "회원탈퇴 인증 - 내용");
migrationBuilder.AddColumn(
name: "EmailTemplate_WithdrawVerifyEmailFormTitle",
table: "Config",
type: "nvarchar(max)",
nullable: true,
comment: "회원탈퇴 인증 - 제목");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "EmailTemplate_WithdrawVerifyEmailFormContent",
table: "Config");
migrationBuilder.DropColumn(
name: "EmailTemplate_WithdrawVerifyEmailFormTitle",
table: "Config");
}
}
}