using System.Collections.Generic; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DysonNetwork.Pusher.Migrations { /// public partial class UpdateNotificationMeta : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn>( name: "meta", table: "notifications", type: "jsonb", nullable: false, oldClrType: typeof(Dictionary), oldType: "jsonb", oldNullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn>( name: "meta", table: "notifications", type: "jsonb", nullable: true, oldClrType: typeof(Dictionary), oldType: "jsonb"); } } }