1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00

Remove constraint for TvRageId from Series table

This commit is contained in:
Bogdan
2026-01-07 05:12:01 +02:00
committed by GitHub
parent ac5b9b14ee
commit a79234de48

View File

@@ -9,6 +9,7 @@ namespace NzbDrone.Core.Datastore.Migration
protected override void MainDbUpgrade()
{
Alter.Table("Series")
.AlterColumn("TvRageId").AsInt32()
.AlterColumn("ImdbId").AsString().Nullable()
.AlterColumn("TitleSlug").AsString().Nullable();
}