using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace API.Data.Migrations
{
///
public partial class RemoveUserLicense : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "License",
table: "AspNetUsers");
migrationBuilder.AddColumn(
name: "MalId",
table: "ScrobbleEvent",
type: "INTEGER",
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "MalId",
table: "ScrobbleEvent");
migrationBuilder.AddColumn(
name: "License",
table: "AspNetUsers",
type: "TEXT",
nullable: true);
}
}
}