parent
9e82014454
commit
f6b08f697b
@ -0,0 +1,14 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(167)]
|
||||
public class add_tvdbid_to_episode : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("Episodes").AddColumn("TvdbId").AsInt32().Nullable();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue