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