mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
19 lines
650 B
C#
19 lines
650 B
C#
|
using Migrator.Framework;
|
||
|
|
||
|
namespace NzbDrone.Core.Datastore.Migrations
|
||
|
{
|
||
|
|
||
|
[Migration(20120227)]
|
||
|
public class Migration20120227 : NzbDroneMigration
|
||
|
{
|
||
|
protected override void MainDbUpgrade()
|
||
|
{
|
||
|
Database.ExecuteNonQuery(@"DELETE FROM Seasons WHERE SeasonNumber NOT IN
|
||
|
(
|
||
|
SELECT DISTINCT SeasonNumber
|
||
|
FROM Episodes
|
||
|
WHERE Seasons.SeriesId = Episodes.SeriesId
|
||
|
)");
|
||
|
}
|
||
|
}
|
||
|
}
|