using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Projection.ReadModel.Migrations { /// public partial class AddNotificationResource : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { // Pre-existing rows are all zaak-creates (the only notification the projector recorded // before S-09b), so default the backfill to "zaak" rather than "". migrationBuilder.AddColumn( name: "resource", table: "processed_notifications", type: "text", nullable: false, defaultValue: "zaak"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "resource", table: "processed_notifications"); } } }