using BTCPayServer.Data; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BTCPayServer.Migrations { [DbContext(typeof(ApplicationDbContext))] [Migration("20251107131717_emailccbcc")] public partial class emailccbcc : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "bcc", table: "email_rules", type: "text[]", nullable: false, defaultValue: new string[0]); migrationBuilder.AddColumn( name: "cc", table: "email_rules", type: "text[]", nullable: false, defaultValue: new string[0]); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "bcc", table: "email_rules"); migrationBuilder.DropColumn( name: "cc", table: "email_rules"); } } }