Fixed the startup error

pull/3265/head
tidusjar 5 years ago
parent 58cc49d607
commit 3bd9b18b33

@ -14,13 +14,9 @@ namespace Ombi.Store.Context.Sqlite
_created = true;
Upgrade();
Database.SetCommandTimeout(60);
try
{
Database.Migrate();
}
catch (SqliteException e) when (e.Message.Equals("duplicate column name: RequestId"))
{
}
Database.Migrate();
}

@ -8,10 +8,10 @@ namespace Ombi.Store.Migrations.ExternalSqlite
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "RequestId",
table: "PlexServerContent",
nullable: true);
//migrationBuilder.AddColumn<int>(
// name: "RequestId",
// table: "PlexServerContent",
// nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)

Loading…
Cancel
Save