using BTCPayServer.Data; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BTCPayServer.Migrations { [DbContext(typeof(ApplicationDbContext))] [Migration("20260322130350_AddPlanChangeTiming")] /// public partial class AddPlanChangeTiming : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "timing", table: "subs_plan_changes", type: "text", nullable: false, defaultValue: "Immediate"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "timing", table: "subs_plan_changes"); } } }