You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/NzbDrone.Core/Datastore/Migration/120_artist_album_types.cs

22 lines
552 B

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();
}
}
}