2012-01-15 05:47:13 +00:00
|
|
|
|
using System.Data;
|
2011-11-26 02:20:50 +00:00
|
|
|
|
using Migrator.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore.Migrations
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[Migration(20111125)]
|
2012-01-15 05:47:13 +00:00
|
|
|
|
public class Migration2011125 : NzbDroneMigration
|
2011-11-26 02:20:50 +00:00
|
|
|
|
{
|
2012-01-15 05:47:13 +00:00
|
|
|
|
protected override void MainDbUpgrade()
|
2011-11-26 02:20:50 +00:00
|
|
|
|
{
|
|
|
|
|
Database.AddColumn("Series", "IsDaily", DbType.Boolean, ColumnProperty.Null);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|