using System.Collections.Generic; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace agologum_api.Migrations { /// public partial class ugh : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Permissions", table: "AspNetUsers", type: "jsonb", nullable: true, oldClrType: typeof(List), oldType: "text[]", oldNullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn>( name: "Permissions", table: "AspNetUsers", type: "text[]", nullable: true, oldClrType: typeof(string), oldType: "jsonb", oldNullable: true); } } }