using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Webhook_4docs.Migrations { /// public partial class AddJsonBodyToProcessedInvoices : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "JsonBody", table: "ProcessedInvoices", type: "jsonb", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "JsonBody", table: "ProcessedInvoices"); } } }