mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
finished add series,
still has a few rough edges but should be functional.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using FluentMigrator;
|
||||
using NzbDrone.Core.Datastore.Migration.Framework;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Migration
|
||||
{
|
||||
[Tags("")]
|
||||
[Migration(2)]
|
||||
public class Remove_tvrage_imdb_unique_constraint : NzbDroneMigrationBase
|
||||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
Execute.Sql("DROP INDEX IX_Series_TvRageId;");
|
||||
Execute.Sql("DROP INDEX IX_Series_ImdbId;");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user