mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
New: Added Network to Series Grid.
Fixed logging for RetentionSpecification.
This commit is contained in:
parent
5eed576e42
commit
4d918ff683
8 changed files with 27 additions and 4 deletions
15
NzbDrone.Core/Datastore/Migrations/Migration20120228.cs
Normal file
15
NzbDrone.Core/Datastore/Migrations/Migration20120228.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System.Data;
|
||||
using Migrator.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migrations
|
||||
{
|
||||
|
||||
[Migration(20120228)]
|
||||
public class Migration20120228 : NzbDroneMigration
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Database.AddColumn("Series", "Network", DbType.String, ColumnProperty.Null);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue