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

31 lines
1.3 KiB

using System;
using System.Data;
using Migrator.Framework;
namespace NzbDrone.Services.Service.Migrations
{
[Migration(20120203)]
public class Migration20120203 : Migration
{
public override void Up()
{
Database.AddTable("ExceptionReports", new[]
{
new Column("Type", DbType.String, ColumnProperty.PrimaryKey),
new Column("Logger", DbType.String, ColumnProperty.PrimaryKey),
new Column("LogMessage", DbType.String, ColumnProperty.PrimaryKey),
new Column("String", DbType.String, 4000, ColumnProperty.PrimaryKey),
MigrationsHelper.UGuidColumn,
MigrationsHelper.TimestampColumn,
MigrationsHelper.VersionColumn,
MigrationsHelper.ProductionColumn
});
}
public override void Down()
{
throw new NotImplementedException();
}
}
}