parent
be11789a86
commit
c07a67ae3c
@ -0,0 +1,16 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(137)]
|
||||
public class add_airedbefore_to_episodes : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("Episodes").AddColumn("AiredAfterSeasonNumber").AsInt32().Nullable()
|
||||
.AddColumn("AiredBeforeSeasonNumber").AsInt32().Nullable()
|
||||
.AddColumn("AiredBeforeEpisodeNumber").AsInt32().Nullable();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue