New: Add tags field to MovieCollection (#8736)
* New: Add tags field to MovieCollection * Added Tag input prepopulation for new collection movies * Handle editting of collection tags * Revert changes to CollectionController.cspull/8768/head
parent
bd1844030d
commit
fe41aada06
@ -0,0 +1,14 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Migration(225)]
|
||||
public class add_tags_to_collections : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Alter.Table("Collections").AddColumn("Tags").AsString().Nullable();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue