using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace LiteCharms.Features.MidrandBooks.Postgres.Migrations { /// public partial class RemovedPassphraseFromPaymentGateway : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Passphrase", table: "Gateways"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Passphrase", table: "Gateways", type: "text", nullable: false, defaultValue: ""); } } }