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/dff3b3596f46120b1e94ae322a37a7ef37788813/Migrator.net/Migrator.Providers/ForeignKeyConstraintMapper.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/Migrator.net/Migrator.Providers/ForeignKeyConstraintMapper.cs

25 lines
584 B

using Migrator.Framework;
namespace Migrator.Providers
{
public class ForeignKeyConstraintMapper
{
public string SqlForConstraint(ForeignKeyConstraint constraint)
{
switch(constraint)
{
case ForeignKeyConstraint.Cascade:
return "CASCADE";
case ForeignKeyConstraint.Restrict:
return "RESTRICT";
case ForeignKeyConstraint.SetDefault:
return "SET DEFAULT";
case ForeignKeyConstraint.SetNull:
return "SET NULL";
default:
return "NO ACTION";
}
}
}
}