Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/c4324c8e47b57c631abb96c86ee9719cef8417e9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Migrate fails for Sonarr contaminated DBs

pull/5459/head
Qstick 4 years ago
parent ac8fa1ee93
commit c4324c8e47

@ -8,6 +8,12 @@ namespace NzbDrone.Core.Datastore.Migration
{
protected override void MainDbUpgrade()
{
//Cleanup cases of Sonarr Interference with Radarr db
if (Schema.Table("PendingReleases").Column("Reason").Exists())
{
Delete.Column("Reason").FromTable("PendingReleases");
}
Alter.Table("PendingReleases").AddColumn("Reason").AsInt32().WithDefaultValue(0);
Rename.Column("IndexerId").OnTable("IndexerStatus").To("ProviderId");

Loading…
Cancel
Save