Drop all Commands rows before running migration 204

This commit is contained in:
Qstick 2021-12-23 11:50:13 -06:00
parent eecd4e4b7d
commit 346236764c
1 changed files with 3 additions and 0 deletions

View File

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