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