using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Persistence.Migrations
{
///
public partial class AddGoalFontFamily : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "AmountFontFamily",
table: "DonationGoalConfig",
type: "nvarchar(100)",
maxLength: 100,
nullable: true);
migrationBuilder.AddColumn(
name: "TitleFontFamily",
table: "DonationGoalConfig",
type: "nvarchar(100)",
maxLength: 100,
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AmountFontFamily",
table: "DonationGoalConfig");
migrationBuilder.DropColumn(
name: "TitleFontFamily",
table: "DonationGoalConfig");
}
}
}