mirror of https://github.com/Radarr/Radarr
Drop all Commands rows before running migration 204
This commit is contained in:
parent
eecd4e4b7d
commit
346236764c
|
@ -8,6 +8,9 @@ namespace NzbDrone.Core.Datastore.Migration
|
|||
{
|
||||
protected override void MainDbUpgrade()
|
||||
{
|
||||
//Purge Commands before reworking tables
|
||||
Delete.FromTable("Commands").AllRows();
|
||||
|
||||
Alter.Column("Id").OnTable("Movies").AsInt32().PrimaryKey().Identity();
|
||||
Alter.Column("Id").OnTable("MovieTranslations").AsInt32().PrimaryKey().Identity();
|
||||
Alter.Column("Id").OnTable("Commands").AsInt32().PrimaryKey().Identity();
|
||||
|
|
Loading…
Reference in New Issue