Lidarr/src/NzbDrone.Core/Datastore/Migration/066_add_tags.cs

25 lines
700 B
C#

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(66)]
public class add_tags : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Create.TableForModel("Tags")
.WithColumn("Label").AsString().NotNullable();
Alter.Table("Series")
.AddColumn("Tags").AsString().Nullable();
Alter.Table("Notifications")
.AddColumn("Tags").AsString().Nullable();
Execute.Sql("UPDATE Series SET Tags = '[]'");
Execute.Sql("UPDATE Notifications SET Tags = '[]'");
}
}
}