using Microsoft.EntityFrameworkCore.Migrations; namespace Ombi.Store.Migrations.OmbiSqlite { public partial class RemoveEmbyConnectionid : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "EmbyConnectUserId", table: "AspNetUsers"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "EmbyConnectUserId", table: "AspNetUsers", type: "TEXT", nullable: true); } } }