mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
Nzb Url column added.
This commit is contained in:
parent
4947252f93
commit
06fb34ce6c
1 changed files with 15 additions and 0 deletions
15
NzbDrone.Core/Datastore/Migrations/Migration20120414.cs
Normal file
15
NzbDrone.Core/Datastore/Migrations/Migration20120414.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
|
||||
[Migration(20120414)]
|
||||
public class Migration20120414 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("History", "Url", DbType.String, ColumnProperty.Null);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue