parent
74f91d63f6
commit
b963f2aa82
@ -0,0 +1,21 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(120)]
|
||||
public class artist_album_types : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("Artists")
|
||||
.AddColumn("PrimaryAlbumTypes").AsString().Nullable()
|
||||
.AddColumn("SecondaryAlbumTypes").AsString().Nullable();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in new issue