Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/2229f8f2fa5c58707b6ae1157c2c10660cfde364/NzbDrone.Services/NzbDrone.Services.Service/Migrations/Migration20120210.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

21 lines
500 B

13 years ago
using System;
using System.Data;
using System.Linq;
using Migrator.Framework;
namespace NzbDrone.Services.Service.Migrations
{
[Migration(20120210)]
public class Migration20120210 : Migration
{
public override void Up()
{
Database.ChangeColumn("ExceptionReports", new Column("LogMessage", DbType.String, 4000, ColumnProperty.NotNull));
}
public override void Down()
{
throw new NotImplementedException();
}
}
}