diff --git a/.deploy/docker/entrypoint.sh b/.deploy/docker/entrypoint.sh index 2187a72f82..94c332c3ca 100755 --- a/.deploy/docker/entrypoint.sh +++ b/.deploy/docker/entrypoint.sh @@ -63,6 +63,7 @@ php artisan firefly-iii:decrypt-all # there are 12 upgrade commands php artisan firefly-iii:transaction-identifiers +php artisan firefly-iii:migrate-to-groups php artisan firefly-iii:account-currencies php artisan firefly-iii:transfer-currencies php artisan firefly-iii:other-currencies @@ -71,7 +72,6 @@ php artisan firefly-iii:migrate-attachments php artisan firefly-iii:bills-to-rules php artisan firefly-iii:bl-currency php artisan firefly-iii:cc-liabilities -php artisan firefly-iii:migrate-to-groups php artisan firefly-iii:back-to-journals php artisan firefly-iii:rename-account-meta @@ -85,7 +85,7 @@ php artisan firefly-iii:fix-transfer-budgets php artisan firefly-iii:fix-uneven-amount php artisan firefly-iii:delete-zero-amount php artisan firefly-iii:delete-orphaned-transactions -php artisan firefly-iii:delete-empty-journals + php artisan firefly-iii:delete-empty-journals php artisan firefly-iii:delete-empty-groups php artisan firefly-iii:fix-account-types php artisan firefly-iii:rename-meta-fields diff --git a/app/Http/Controllers/System/InstallController.php b/app/Http/Controllers/System/InstallController.php index 9f341177a8..7f6388ecef 100644 --- a/app/Http/Controllers/System/InstallController.php +++ b/app/Http/Controllers/System/InstallController.php @@ -72,6 +72,7 @@ class InstallController extends Controller // there are 12 upgrade commands. 'firefly-iii:transaction-identifiers' => [], + 'firefly-iii:migrate-to-groups' => [], 'firefly-iii:account-currencies' => [], 'firefly-iii:transfer-currencies' => [], 'firefly-iii:other-currencies' => [], @@ -80,9 +81,8 @@ class InstallController extends Controller 'firefly-iii:bills-to-rules' => [], 'firefly-iii:bl-currency' => [], 'firefly-iii:cc-liabilities' => [], - 'firefly-iii:migrate-to-groups' => [], 'firefly-iii:back-to-journals' => [], - 'firefly-iii:rename-account-meta' => [], + 'firefly-iii:rename-account-meta' => [], // there are 13 verify commands. 'firefly-iii:fix-piggies' => [], diff --git a/composer.json b/composer.json index d3ace8b6ad..e0341923b9 100644 --- a/composer.json +++ b/composer.json @@ -135,6 +135,7 @@ "@php artisan firefly-iii:decrypt-all", "@php artisan firefly-iii:transaction-identifiers", + "@php artisan firefly-iii:migrate-to-groups", "@php artisan firefly-iii:account-currencies", "@php artisan firefly-iii:transfer-currencies", "@php artisan firefly-iii:other-currencies", @@ -143,7 +144,6 @@ "@php artisan firefly-iii:bills-to-rules", "@php artisan firefly-iii:bl-currency", "@php artisan firefly-iii:cc-liabilities", - "@php artisan firefly-iii:migrate-to-groups", "@php artisan firefly-iii:back-to-journals", "@php artisan firefly-iii:rename-account-meta",