parent
ff4a550cbb
commit
9af57c6786
@ -0,0 +1,14 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(130)]
|
||||
public class episode_last_searched_time : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("Episodes").AddColumn("LastSearchTime").AsDateTime().Nullable();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue