From 7b1b0cfef91b903fd5e214bb86f866052c17786f Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 16 Apr 2023 07:49:53 +0200 Subject: [PATCH] Remove duplicate commands. --- app/Console/Commands/Upgrade/UpgradeDatabase.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Console/Commands/Upgrade/UpgradeDatabase.php b/app/Console/Commands/Upgrade/UpgradeDatabase.php index f2f7fa7a4d..ee26a91dde 100644 --- a/app/Console/Commands/Upgrade/UpgradeDatabase.php +++ b/app/Console/Commands/Upgrade/UpgradeDatabase.php @@ -57,8 +57,6 @@ class UpgradeDatabase extends Command { $this->callInitialCommands(); $commands = [ - 'firefly-iii:fix-pgsql-sequences', - 'firefly-iii:decrypt-all', 'firefly-iii:transaction-identifiers', 'firefly-iii:migrate-to-groups', 'firefly-iii:account-currencies', @@ -100,7 +98,7 @@ class UpgradeDatabase extends Command private function callInitialCommands(): void { $this->line('Now seeding the database...'); - $this->call('migrate', ['--seed' => true, '--force' => true]); + $this->call('migrate', ['--seed' => true, '--force' => true,' --no-interaction' => true]); $this->line('Fix PostgreSQL sequences.'); $this->call('firefly-iii:fix-pgsql-sequences');