From db94f18d465bc88f58c22d63a5cbe8d4cac0a260 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 11 Aug 2023 19:37:52 +0200 Subject: [PATCH] Clean up migrations --- ...016_06_16_000000_create_support_tables.php | 40 +++---- .../2016_06_16_000001_create_users_table.php | 4 +- .../2016_06_16_000002_create_main_tables.php | 104 +++++++++--------- .../2016_08_25_091522_changes_for_3101.php | 8 +- .../2016_09_12_121359_fix_nullables.php | 12 +- ...10_09_150037_expand_transactions_table.php | 8 +- .../2016_10_22_075804_changes_for_v410.php | 4 +- .../2016_11_24_210552_changes_for_v420.php | 8 +- .../2016_12_22_150431_changes_for_v430.php | 4 +- .../2016_12_28_203205_changes_for_v431.php | 40 +++---- .../2017_04_13_163623_changes_for_v440.php | 12 +- .../2017_06_02_105232_changes_for_v450.php | 20 ++-- .../2017_08_20_062014_changes_for_v470.php | 8 +- .../2017_11_04_170844_changes_for_v470a.php | 8 +- ...1_000001_create_oauth_auth_codes_table.php | 4 +- ...00002_create_oauth_access_tokens_table.php | 4 +- ...0003_create_oauth_refresh_tokens_table.php | 4 +- ...1_01_000004_create_oauth_clients_table.php | 4 +- ...te_oauth_personal_access_clients_table.php | 4 +- .../2018_03_19_141348_changes_for_v472.php | 16 +-- .../2018_04_07_210913_changes_for_v473.php | 16 +-- .../2018_04_29_174524_changes_for_v474.php | 8 +- .../2018_06_08_200526_changes_for_v475.php | 20 ++-- .../2018_09_05_195147_changes_for_v477.php | 8 +- .../2018_11_06_172532_changes_for_v479.php | 8 +- .../2019_01_28_193833_changes_for_v4710.php | 8 +- .../2019_02_05_055516_changes_for_v4711.php | 8 +- .../2019_02_11_170529_changes_for_v4712.php | 4 +- ...19_03_11_223700_fix_ldap_configuration.php | 8 +- .../2019_03_22_183214_changes_for_v480.php | 44 ++++---- ...2019_12_28_191351_make_locations_table.php | 4 +- .../2020_03_13_201950_changes_for_v520.php | 4 +- .../2020_06_07_063612_changes_for_v530.php | 8 +- .../2020_06_30_202620_changes_for_v530a.php | 8 +- .../2020_07_24_162820_changes_for_v540.php | 32 +++--- .../2020_11_12_070604_changes_for_v550.php | 44 ++++---- .../2021_03_12_061213_changes_for_v550b2.php | 8 +- ...064644_add_ldap_columns_to_users_table.php | 8 +- ...2021_05_13_053836_extend_currency_info.php | 4 +- .../2021_08_28_073733_user_groups.php | 31 +++--- ...ate_local_personal_access_tokens_table.php | 4 +- .../2022_08_21_104626_add_user_groups.php | 9 +- ...9_18_123911_create_notifications_table.php | 5 +- .../2022_10_01_074908_invited_users.php | 5 +- .../2022_10_01_210238_audit_log_entries.php | 5 +- .../2023_08_11_192521_upgrade_og_table.php | 58 ++++++++++ database/seeders/ExchangeRateSeeder.php | 36 +++--- 47 files changed, 383 insertions(+), 338 deletions(-) create mode 100644 database/migrations/2023_08_11_192521_upgrade_og_table.php diff --git a/database/migrations/2016_06_16_000000_create_support_tables.php b/database/migrations/2016_06_16_000000_create_support_tables.php index 3845d7b6c7..14d5c53c2f 100644 --- a/database/migrations/2016_06_16_000000_create_support_tables.php +++ b/database/migrations/2016_06_16_000000_create_support_tables.php @@ -89,8 +89,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'account_types', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'account_types', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -117,8 +117,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'transaction_currencies', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'transaction_currencies', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -143,8 +143,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'transaction_types', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'transaction_types', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -172,8 +172,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'jobs', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'jobs', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -195,8 +195,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'password_resets', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'password_resets', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -219,8 +219,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'permissions', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'permissions', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -243,8 +243,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'roles', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'roles', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -269,8 +269,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'permission_role', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'permission_role', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -294,8 +294,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'sessions', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'sessions', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -318,8 +318,8 @@ class CreateSupportTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'configuration', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'configuration', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } diff --git a/database/migrations/2016_06_16_000001_create_users_table.php b/database/migrations/2016_06_16_000001_create_users_table.php index 12cc7dfdb9..1e0aece1d0 100644 --- a/database/migrations/2016_06_16_000001_create_users_table.php +++ b/database/migrations/2016_06_16_000001_create_users_table.php @@ -65,8 +65,8 @@ class CreateUsersTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'users', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'users', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } diff --git a/database/migrations/2016_06_16_000002_create_main_tables.php b/database/migrations/2016_06_16_000002_create_main_tables.php index cf4284e8d0..65c8d18219 100644 --- a/database/migrations/2016_06_16_000002_create_main_tables.php +++ b/database/migrations/2016_06_16_000002_create_main_tables.php @@ -111,8 +111,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'accounts', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'accounts', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -130,8 +130,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'account_meta', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'account_meta', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -158,8 +158,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'piggy_banks', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'piggy_banks', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -178,8 +178,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'piggy_bank_repetitions', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'piggy_bank_repetitions', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -211,8 +211,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'attachments', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'attachments', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -245,8 +245,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'bills', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'bills', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -271,8 +271,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'budgets', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'budgets', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } if (!Schema::hasTable('budget_limits')) { @@ -291,8 +291,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'budget_limits', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'budget_limits', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } if (!Schema::hasTable('limit_repetitions')) { @@ -310,8 +310,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'limit_repetitions', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'limit_repetitions', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -338,8 +338,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'categories', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'categories', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -361,8 +361,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'preferences', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'preferences', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -387,8 +387,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'role_user', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'role_user', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -414,8 +414,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'rule_groups', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'rule_groups', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } if (!Schema::hasTable('rules')) { @@ -442,8 +442,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'rules', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'rules', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } if (!Schema::hasTable('rule_actions')) { @@ -467,8 +467,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'rule_actions', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'rule_actions', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } if (!Schema::hasTable('rule_triggers')) { @@ -492,8 +492,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'rule_triggers', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'rule_triggers', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -526,8 +526,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'tags', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'tags', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } @@ -565,8 +565,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'transaction_journals', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'transaction_journals', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -585,8 +585,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'journal_meta', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'journal_meta', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -606,8 +606,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'tag_transaction_journal', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'tag_transaction_journal', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -624,8 +624,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'budget_transaction_journal', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'budget_transaction_journal', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -642,8 +642,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'category_transaction_journal', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'category_transaction_journal', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -664,8 +664,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'piggy_bank_events', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'piggy_bank_events', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -687,8 +687,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'transactions', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'transactions', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -706,8 +706,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'budget_transaction', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'budget_transaction', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } @@ -725,8 +725,8 @@ class CreateMainTables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_ERROR, 'category_transaction', $e->getMessage())); - Log::error(self::TABLE_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_ERROR, 'category_transaction', $e->getMessage())); + app('log')->error(self::TABLE_ALREADY_EXISTS); } } } diff --git a/database/migrations/2016_08_25_091522_changes_for_3101.php b/database/migrations/2016_08_25_091522_changes_for_3101.php index 5b32bada7f..be2b8cf0c7 100644 --- a/database/migrations/2016_08_25_091522_changes_for_3101.php +++ b/database/migrations/2016_08_25_091522_changes_for_3101.php @@ -33,15 +33,11 @@ class ChangesFor3101 extends Migration /** * Reverse the migrations. */ - public function down(): void - { - } + public function down(): void {} /** * Run the migrations. * */ - public function up(): void - { - } + public function up(): void {} } diff --git a/database/migrations/2016_09_12_121359_fix_nullables.php b/database/migrations/2016_09_12_121359_fix_nullables.php index 9a112b1bea..bb389daa45 100644 --- a/database/migrations/2016_09_12_121359_fix_nullables.php +++ b/database/migrations/2016_09_12_121359_fix_nullables.php @@ -38,9 +38,7 @@ class FixNullables extends Migration /** * Reverse the migrations. */ - public function down(): void - { - } + public function down(): void {} /** * Run the migrations. @@ -57,8 +55,8 @@ class FixNullables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_UPDATE_ERROR, 'rule_groups', $e->getMessage())); - Log::error(self::COLUMN_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_UPDATE_ERROR, 'rule_groups', $e->getMessage())); + app('log')->error(self::COLUMN_ALREADY_EXISTS); } } @@ -71,8 +69,8 @@ class FixNullables extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf(self::TABLE_UPDATE_ERROR, 'rules', $e->getMessage())); - Log::error(self::COLUMN_ALREADY_EXISTS); + app('log')->error(sprintf(self::TABLE_UPDATE_ERROR, 'rules', $e->getMessage())); + app('log')->error(self::COLUMN_ALREADY_EXISTS); } } } diff --git a/database/migrations/2016_10_09_150037_expand_transactions_table.php b/database/migrations/2016_10_09_150037_expand_transactions_table.php index 90729f7f0a..256a3bb5ca 100644 --- a/database/migrations/2016_10_09_150037_expand_transactions_table.php +++ b/database/migrations/2016_10_09_150037_expand_transactions_table.php @@ -47,8 +47,8 @@ class ExpandTransactionsTable extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not drop column "identifier": %s', $e->getMessage())); - Log::error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not drop column "identifier": %s', $e->getMessage())); + app('log')->error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -68,8 +68,8 @@ class ExpandTransactionsTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2016_10_22_075804_changes_for_v410.php b/database/migrations/2016_10_22_075804_changes_for_v410.php index 5d3993d2e0..7faabd92e2 100644 --- a/database/migrations/2016_10_22_075804_changes_for_v410.php +++ b/database/migrations/2016_10_22_075804_changes_for_v410.php @@ -61,8 +61,8 @@ class ChangesForV410 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "notes": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "notes": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2016_11_24_210552_changes_for_v420.php b/database/migrations/2016_11_24_210552_changes_for_v420.php index 48f23e4561..3283c06112 100644 --- a/database/migrations/2016_11_24_210552_changes_for_v420.php +++ b/database/migrations/2016_11_24_210552_changes_for_v420.php @@ -46,8 +46,8 @@ class ChangesForV420 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -67,8 +67,8 @@ class ChangesForV420 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2016_12_22_150431_changes_for_v430.php b/database/migrations/2016_12_22_150431_changes_for_v430.php index 36e49e1118..272d3b2a63 100644 --- a/database/migrations/2016_12_22_150431_changes_for_v430.php +++ b/database/migrations/2016_12_22_150431_changes_for_v430.php @@ -65,8 +65,8 @@ class ChangesForV430 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "available_budgets": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "available_budgets": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2016_12_28_203205_changes_for_v431.php b/database/migrations/2016_12_28_203205_changes_for_v431.php index 661337aad8..7da1ee7968 100644 --- a/database/migrations/2016_12_28_203205_changes_for_v431.php +++ b/database/migrations/2016_12_28_203205_changes_for_v431.php @@ -48,8 +48,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } if (!Schema::hasColumn('budget_limits', 'repeats')) { @@ -61,8 +61,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } // change field "start_date" to "startdate" @@ -75,8 +75,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -90,8 +90,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } // remove decimal places @@ -104,8 +104,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -126,8 +126,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -141,8 +141,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -156,8 +156,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -171,8 +171,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } if (Schema::hasColumn('budget_limits', 'repeat_freq')) { @@ -184,8 +184,8 @@ class ChangesForV431 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2017_04_13_163623_changes_for_v440.php b/database/migrations/2017_04_13_163623_changes_for_v440.php index 17a461f0ac..0caad0e92b 100644 --- a/database/migrations/2017_04_13_163623_changes_for_v440.php +++ b/database/migrations/2017_04_13_163623_changes_for_v440.php @@ -53,8 +53,8 @@ class ChangesForV440 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -85,8 +85,8 @@ class ChangesForV440 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "notifications": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "notifications": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } if (!Schema::hasColumn('transactions', 'transaction_currency_id')) { @@ -101,8 +101,8 @@ class ChangesForV440 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2017_06_02_105232_changes_for_v450.php b/database/migrations/2017_06_02_105232_changes_for_v450.php index 0e13a3d6ff..d9b025e8d7 100644 --- a/database/migrations/2017_06_02_105232_changes_for_v450.php +++ b/database/migrations/2017_06_02_105232_changes_for_v450.php @@ -48,8 +48,8 @@ class ChangesForV450 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -64,8 +64,8 @@ class ChangesForV450 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } if (Schema::hasColumn('transactions', 'foreign_currency_id')) { try { @@ -76,8 +76,8 @@ class ChangesForV450 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -98,8 +98,8 @@ class ChangesForV450 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -114,8 +114,8 @@ class ChangesForV450 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2017_08_20_062014_changes_for_v470.php b/database/migrations/2017_08_20_062014_changes_for_v470.php index dc6270e238..a6a4a52f72 100644 --- a/database/migrations/2017_08_20_062014_changes_for_v470.php +++ b/database/migrations/2017_08_20_062014_changes_for_v470.php @@ -65,8 +65,8 @@ class ChangesForV470 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "link_types": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "link_types": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -90,8 +90,8 @@ class ChangesForV470 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "journal_links": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "journal_links": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2017_11_04_170844_changes_for_v470a.php b/database/migrations/2017_11_04_170844_changes_for_v470a.php index fcde3e5f20..10f2bb0aa9 100644 --- a/database/migrations/2017_11_04_170844_changes_for_v470a.php +++ b/database/migrations/2017_11_04_170844_changes_for_v470a.php @@ -48,8 +48,8 @@ class ChangesForV470a extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -69,8 +69,8 @@ class ChangesForV470a extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2018_01_01_000001_create_oauth_auth_codes_table.php b/database/migrations/2018_01_01_000001_create_oauth_auth_codes_table.php index a498667e14..75cd6c65dc 100644 --- a/database/migrations/2018_01_01_000001_create_oauth_auth_codes_table.php +++ b/database/migrations/2018_01_01_000001_create_oauth_auth_codes_table.php @@ -61,8 +61,8 @@ class CreateOauthAuthCodesTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "oauth_auth_codes": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "oauth_auth_codes": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2018_01_01_000002_create_oauth_access_tokens_table.php b/database/migrations/2018_01_01_000002_create_oauth_access_tokens_table.php index 2d177fe642..3b2950b92c 100644 --- a/database/migrations/2018_01_01_000002_create_oauth_access_tokens_table.php +++ b/database/migrations/2018_01_01_000002_create_oauth_access_tokens_table.php @@ -63,8 +63,8 @@ class CreateOauthAccessTokensTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "oauth_access_tokens": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "oauth_access_tokens": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2018_01_01_000003_create_oauth_refresh_tokens_table.php b/database/migrations/2018_01_01_000003_create_oauth_refresh_tokens_table.php index 0b6b178976..5108372473 100644 --- a/database/migrations/2018_01_01_000003_create_oauth_refresh_tokens_table.php +++ b/database/migrations/2018_01_01_000003_create_oauth_refresh_tokens_table.php @@ -59,8 +59,8 @@ class CreateOauthRefreshTokensTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "oauth_refresh_tokens": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "oauth_refresh_tokens": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2018_01_01_000004_create_oauth_clients_table.php b/database/migrations/2018_01_01_000004_create_oauth_clients_table.php index c0087c7c25..c95a1f8eb6 100644 --- a/database/migrations/2018_01_01_000004_create_oauth_clients_table.php +++ b/database/migrations/2018_01_01_000004_create_oauth_clients_table.php @@ -64,8 +64,8 @@ class CreateOauthClientsTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "oauth_clients": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "oauth_clients": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2018_01_01_000005_create_oauth_personal_access_clients_table.php b/database/migrations/2018_01_01_000005_create_oauth_personal_access_clients_table.php index 970363809f..a66f2f5387 100644 --- a/database/migrations/2018_01_01_000005_create_oauth_personal_access_clients_table.php +++ b/database/migrations/2018_01_01_000005_create_oauth_personal_access_clients_table.php @@ -58,8 +58,8 @@ class CreateOauthPersonalAccessClientsTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "oauth_personal_access_clients": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "oauth_personal_access_clients": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2018_03_19_141348_changes_for_v472.php b/database/migrations/2018_03_19_141348_changes_for_v472.php index 5d512b366d..888cdb9f91 100644 --- a/database/migrations/2018_03_19_141348_changes_for_v472.php +++ b/database/migrations/2018_03_19_141348_changes_for_v472.php @@ -50,8 +50,8 @@ class ChangesForV472 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -64,8 +64,8 @@ class ChangesForV472 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -86,8 +86,8 @@ class ChangesForV472 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -100,8 +100,8 @@ class ChangesForV472 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2018_04_07_210913_changes_for_v473.php b/database/migrations/2018_04_07_210913_changes_for_v473.php index 0e641b93d4..5d59bc094f 100644 --- a/database/migrations/2018_04_07_210913_changes_for_v473.php +++ b/database/migrations/2018_04_07_210913_changes_for_v473.php @@ -55,8 +55,8 @@ class ChangesForV473 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -69,8 +69,8 @@ class ChangesForV473 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -92,8 +92,8 @@ class ChangesForV473 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } if (!Schema::hasColumn('rules', 'strict')) { @@ -105,8 +105,8 @@ class ChangesForV473 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2018_04_29_174524_changes_for_v474.php b/database/migrations/2018_04_29_174524_changes_for_v474.php index f7d5ce28dc..d5bae260d7 100644 --- a/database/migrations/2018_04_29_174524_changes_for_v474.php +++ b/database/migrations/2018_04_29_174524_changes_for_v474.php @@ -36,16 +36,12 @@ class ChangesForV474 extends Migration * * @return void */ - public function down(): void - { - } + public function down(): void {} /** * Run the migrations. * * @return void */ - public function up(): void - { - } + public function up(): void {} } diff --git a/database/migrations/2018_06_08_200526_changes_for_v475.php b/database/migrations/2018_06_08_200526_changes_for_v475.php index 249f6f76ec..96f58a0eb2 100644 --- a/database/migrations/2018_06_08_200526_changes_for_v475.php +++ b/database/migrations/2018_06_08_200526_changes_for_v475.php @@ -81,8 +81,8 @@ class ChangesForV475 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "recurrences": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "recurrences": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } if (!Schema::hasTable('recurrences_transactions')) { @@ -111,8 +111,8 @@ class ChangesForV475 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "recurrences_transactions": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "recurrences_transactions": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -134,8 +134,8 @@ class ChangesForV475 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "recurrences_repetitions": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "recurrences_repetitions": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -156,8 +156,8 @@ class ChangesForV475 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "recurrences_meta": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "recurrences_meta": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -178,8 +178,8 @@ class ChangesForV475 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "rt_meta": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "rt_meta": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2018_09_05_195147_changes_for_v477.php b/database/migrations/2018_09_05_195147_changes_for_v477.php index dd7be70042..8ba83d4dd5 100644 --- a/database/migrations/2018_09_05_195147_changes_for_v477.php +++ b/database/migrations/2018_09_05_195147_changes_for_v477.php @@ -55,8 +55,8 @@ class ChangesForV477 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -78,8 +78,8 @@ class ChangesForV477 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2018_11_06_172532_changes_for_v479.php b/database/migrations/2018_11_06_172532_changes_for_v479.php index 64bcf11901..1d48a17273 100644 --- a/database/migrations/2018_11_06_172532_changes_for_v479.php +++ b/database/migrations/2018_11_06_172532_changes_for_v479.php @@ -50,8 +50,8 @@ class ChangesForV479 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -72,8 +72,8 @@ class ChangesForV479 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2019_01_28_193833_changes_for_v4710.php b/database/migrations/2019_01_28_193833_changes_for_v4710.php index ae6e0f543e..9f2352be76 100644 --- a/database/migrations/2019_01_28_193833_changes_for_v4710.php +++ b/database/migrations/2019_01_28_193833_changes_for_v4710.php @@ -67,8 +67,8 @@ class ChangesForV4710 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "transaction_groups": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "transaction_groups": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -89,8 +89,8 @@ class ChangesForV4710 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "group_journals": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "group_journals": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2019_02_05_055516_changes_for_v4711.php b/database/migrations/2019_02_05_055516_changes_for_v4711.php index 291bcdbd8d..f410dad84d 100644 --- a/database/migrations/2019_02_05_055516_changes_for_v4711.php +++ b/database/migrations/2019_02_05_055516_changes_for_v4711.php @@ -67,8 +67,8 @@ class ChangesForV4711 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } try { @@ -79,8 +79,8 @@ class ChangesForV4711 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2019_02_11_170529_changes_for_v4712.php b/database/migrations/2019_02_11_170529_changes_for_v4712.php index f455d5174d..c0ce9bf969 100644 --- a/database/migrations/2019_02_11_170529_changes_for_v4712.php +++ b/database/migrations/2019_02_11_170529_changes_for_v4712.php @@ -66,8 +66,8 @@ class ChangesForV4712 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2019_03_11_223700_fix_ldap_configuration.php b/database/migrations/2019_03_11_223700_fix_ldap_configuration.php index d9939f83d5..617d58dfbb 100644 --- a/database/migrations/2019_03_11_223700_fix_ldap_configuration.php +++ b/database/migrations/2019_03_11_223700_fix_ldap_configuration.php @@ -50,8 +50,8 @@ class FixLdapConfiguration extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -76,8 +76,8 @@ class FixLdapConfiguration extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2019_03_22_183214_changes_for_v480.php b/database/migrations/2019_03_22_183214_changes_for_v480.php index 1c0a1cf35f..ae51522ab7 100644 --- a/database/migrations/2019_03_22_183214_changes_for_v480.php +++ b/database/migrations/2019_03_22_183214_changes_for_v480.php @@ -52,21 +52,21 @@ class ChangesForV480 extends Migration try { $table->dropForeign('transaction_journals_transaction_group_id_foreign'); } catch (QueryException $e) { - Log::error(sprintf('Could not drop foreign ID: %s', $e->getMessage())); - Log::error('If the foreign ID does not exist (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not drop foreign ID: %s', $e->getMessage())); + app('log')->error('If the foreign ID does not exist (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } try { $table->dropColumn('transaction_group_id'); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not drop column: %s', $e->getMessage())); - Log::error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not drop column: %s', $e->getMessage())); + app('log')->error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); } } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -79,14 +79,14 @@ class ChangesForV480 extends Migration try { $table->dropColumn('stop_processing'); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not drop column: %s', $e->getMessage())); - Log::error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not drop column: %s', $e->getMessage())); + app('log')->error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); } } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -99,14 +99,14 @@ class ChangesForV480 extends Migration try { $table->dropColumn('mfa_secret'); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not drop column: %s', $e->getMessage())); - Log::error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not drop column: %s', $e->getMessage())); + app('log')->error('If the column does not exist, this is not an problem. Otherwise, please open a GitHub discussion.'); } } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -134,16 +134,16 @@ class ChangesForV480 extends Migration try { $table->foreign('transaction_group_id')->references('id')->on('transaction_groups')->onDelete('cascade'); } catch (QueryException $e) { - Log::error(sprintf('Could not create foreign index: %s', $e->getMessage())); - Log::error( + app('log')->error(sprintf('Could not create foreign index: %s', $e->getMessage())); + app('log')->error( 'If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.' ); } } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -157,8 +157,8 @@ class ChangesForV480 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -172,8 +172,8 @@ class ChangesForV480 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2019_12_28_191351_make_locations_table.php b/database/migrations/2019_12_28_191351_make_locations_table.php index 22b80e8c36..921f3ad92d 100644 --- a/database/migrations/2019_12_28_191351_make_locations_table.php +++ b/database/migrations/2019_12_28_191351_make_locations_table.php @@ -69,8 +69,8 @@ class MakeLocationsTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "locations": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "locations": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2020_03_13_201950_changes_for_v520.php b/database/migrations/2020_03_13_201950_changes_for_v520.php index 90be1d4789..98a9df31a6 100644 --- a/database/migrations/2020_03_13_201950_changes_for_v520.php +++ b/database/migrations/2020_03_13_201950_changes_for_v520.php @@ -69,8 +69,8 @@ class ChangesForV520 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "auto_budgets": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "auto_budgets": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2020_06_07_063612_changes_for_v530.php b/database/migrations/2020_06_07_063612_changes_for_v530.php index aaa97f39ef..270aadd088 100644 --- a/database/migrations/2020_06_07_063612_changes_for_v530.php +++ b/database/migrations/2020_06_07_063612_changes_for_v530.php @@ -66,8 +66,8 @@ class ChangesForV530 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "object_groups": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "object_groups": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -82,8 +82,8 @@ class ChangesForV530 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "object_groupables": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "object_groupables": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2020_06_30_202620_changes_for_v530a.php b/database/migrations/2020_06_30_202620_changes_for_v530a.php index 4c39d12788..df4691b311 100644 --- a/database/migrations/2020_06_30_202620_changes_for_v530a.php +++ b/database/migrations/2020_06_30_202620_changes_for_v530a.php @@ -51,8 +51,8 @@ class ChangesForV530a extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -73,8 +73,8 @@ class ChangesForV530a extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2020_07_24_162820_changes_for_v540.php b/database/migrations/2020_07_24_162820_changes_for_v540.php index 5db1c0e99a..55f025a56c 100644 --- a/database/migrations/2020_07_24_162820_changes_for_v540.php +++ b/database/migrations/2020_07_24_162820_changes_for_v540.php @@ -51,8 +51,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -65,8 +65,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } // in two steps for sqlite @@ -79,8 +79,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } if (Schema::hasColumn('bills', 'extension_date')) { @@ -92,8 +92,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -114,8 +114,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -128,8 +128,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -143,8 +143,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -157,8 +157,8 @@ class ChangesForV540 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2020_11_12_070604_changes_for_v550.php b/database/migrations/2020_11_12_070604_changes_for_v550.php index 47f304ac71..0e4292a1ec 100644 --- a/database/migrations/2020_11_12_070604_changes_for_v550.php +++ b/database/migrations/2020_11_12_070604_changes_for_v550.php @@ -61,8 +61,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "jobs": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "jobs": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -79,8 +79,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -98,8 +98,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } if (Schema::hasColumn('budget_limits', 'generated')) { @@ -111,8 +111,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -147,8 +147,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "jobs": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "jobs": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } // drop failed jobs table. @@ -170,8 +170,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "failed_jobs": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "failed_jobs": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -188,8 +188,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -209,8 +209,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } // new webhooks table @@ -235,8 +235,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "webhooks": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "webhooks": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -260,8 +260,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "webhook_messages": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "webhook_messages": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } @@ -283,8 +283,8 @@ class ChangesForV550 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "webhook_attempts": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "webhook_attempts": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2021_03_12_061213_changes_for_v550b2.php b/database/migrations/2021_03_12_061213_changes_for_v550b2.php index 0487be2f7f..d3364a7b84 100644 --- a/database/migrations/2021_03_12_061213_changes_for_v550b2.php +++ b/database/migrations/2021_03_12_061213_changes_for_v550b2.php @@ -54,8 +54,8 @@ class ChangesForV550b2 extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -80,8 +80,8 @@ class ChangesForV550b2 extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2021_05_09_064644_add_ldap_columns_to_users_table.php b/database/migrations/2021_05_09_064644_add_ldap_columns_to_users_table.php index d54bb6b1b3..330f76bf5f 100644 --- a/database/migrations/2021_05_09_064644_add_ldap_columns_to_users_table.php +++ b/database/migrations/2021_05_09_064644_add_ldap_columns_to_users_table.php @@ -44,8 +44,8 @@ class AddLdapColumnsToUsersTable extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -64,8 +64,8 @@ class AddLdapColumnsToUsersTable extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2021_05_13_053836_extend_currency_info.php b/database/migrations/2021_05_13_053836_extend_currency_info.php index b2982f6154..962016e894 100644 --- a/database/migrations/2021_05_13_053836_extend_currency_info.php +++ b/database/migrations/2021_05_13_053836_extend_currency_info.php @@ -58,8 +58,8 @@ class ExtendCurrencyInfo extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2021_08_28_073733_user_groups.php b/database/migrations/2021_08_28_073733_user_groups.php index 86ba5f08ff..761eac84c0 100644 --- a/database/migrations/2021_08_28_073733_user_groups.php +++ b/database/migrations/2021_08_28_073733_user_groups.php @@ -42,6 +42,7 @@ class UserGroups extends Migration 'budgets', 'categories', 'recurrences', + 'object_groups', 'rule_groups', 'rules', 'tags', @@ -74,8 +75,8 @@ class UserGroups extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } @@ -94,8 +95,8 @@ class UserGroups extends Migration } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -129,8 +130,8 @@ class UserGroups extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "user_groups": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "user_groups": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } if (!Schema::hasTable('user_roles')) { @@ -147,8 +148,8 @@ class UserGroups extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "user_roles": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "user_roles": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } if (!Schema::hasTable('group_memberships')) { @@ -170,8 +171,8 @@ class UserGroups extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "group_memberships": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "group_memberships": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } try { @@ -187,10 +188,10 @@ class UserGroups extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } - // ADD columns from tables + // ADD columns to tables /** @var string $tableName */ foreach ($this->tables as $tableName) { try { @@ -206,8 +207,8 @@ class UserGroups extends Migration } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } } diff --git a/database/migrations/2021_12_27_000001_create_local_personal_access_tokens_table.php b/database/migrations/2021_12_27_000001_create_local_personal_access_tokens_table.php index dcfd29b2e9..2e012562f8 100644 --- a/database/migrations/2021_12_27_000001_create_local_personal_access_tokens_table.php +++ b/database/migrations/2021_12_27_000001_create_local_personal_access_tokens_table.php @@ -61,8 +61,8 @@ class CreateLocalPersonalAccessTokensTable extends Migration $table->timestamps(); }); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "personal_access_tokens": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "personal_access_tokens": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2022_08_21_104626_add_user_groups.php b/database/migrations/2022_08_21_104626_add_user_groups.php index 6a67c21b21..236db80847 100644 --- a/database/migrations/2022_08_21_104626_add_user_groups.php +++ b/database/migrations/2022_08_21_104626_add_user_groups.php @@ -26,7 +26,6 @@ use Doctrine\DBAL\Schema\Exception\ColumnDoesNotExist; use Illuminate\Database\Migrations\Migration; use Illuminate\Database\QueryException; use Illuminate\Database\Schema\Blueprint; -use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Schema; /** @@ -51,8 +50,8 @@ return new class () extends Migration { } ); } catch (QueryException $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } @@ -76,8 +75,8 @@ return new class () extends Migration { } ); } catch (QueryException | ColumnDoesNotExist $e) { - Log::error(sprintf('Could not execute query: %s', $e->getMessage())); - Log::error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); } } }; diff --git a/database/migrations/2022_09_18_123911_create_notifications_table.php b/database/migrations/2022_09_18_123911_create_notifications_table.php index af4becdadb..c5a4fd1599 100644 --- a/database/migrations/2022_09_18_123911_create_notifications_table.php +++ b/database/migrations/2022_09_18_123911_create_notifications_table.php @@ -25,7 +25,6 @@ declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\QueryException; use Illuminate\Database\Schema\Blueprint; -use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Schema; return new class () extends Migration { @@ -47,8 +46,8 @@ return new class () extends Migration { $table->timestamps(); }); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "notifications": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "notifications": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2022_10_01_074908_invited_users.php b/database/migrations/2022_10_01_074908_invited_users.php index 884ce92476..4a6246d4e5 100644 --- a/database/migrations/2022_10_01_074908_invited_users.php +++ b/database/migrations/2022_10_01_074908_invited_users.php @@ -25,7 +25,6 @@ declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\QueryException; use Illuminate\Database\Schema\Blueprint; -use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Schema; return new class () extends Migration { @@ -49,8 +48,8 @@ return new class () extends Migration { $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "invited_users": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "invited_users": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2022_10_01_210238_audit_log_entries.php b/database/migrations/2022_10_01_210238_audit_log_entries.php index a4c9e82163..98d8170e72 100644 --- a/database/migrations/2022_10_01_210238_audit_log_entries.php +++ b/database/migrations/2022_10_01_210238_audit_log_entries.php @@ -25,7 +25,6 @@ declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\QueryException; use Illuminate\Database\Schema\Blueprint; -use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Schema; return new class () extends Migration { @@ -54,8 +53,8 @@ return new class () extends Migration { $table->text('after')->nullable(); }); } catch (QueryException $e) { - Log::error(sprintf('Could not create table "audit_log_entries": %s', $e->getMessage())); - Log::error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); + app('log')->error(sprintf('Could not create table "audit_log_entries": %s', $e->getMessage())); + app('log')->error('If this table exists already (see the error message), this is not a problem. Other errors? Please open a discussion on GitHub.'); } } } diff --git a/database/migrations/2023_08_11_192521_upgrade_og_table.php b/database/migrations/2023_08_11_192521_upgrade_og_table.php new file mode 100644 index 0000000000..adfd61346a --- /dev/null +++ b/database/migrations/2023_08_11_192521_upgrade_og_table.php @@ -0,0 +1,58 @@ +bigInteger('user_group_id', false, true)->nullable()->after('user_id'); + $table->foreign('user_group_id', sprintf('%s_to_ugi', 'object_groups'))->references('id')->on('user_groups')->onDelete( + 'set null' + )->onUpdate('cascade'); + } + } + ); + } catch (QueryException $e) { + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + } + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + try { + Schema::table( + 'object_groups', + function (Blueprint $table) { + if ('sqlite' !== config('database.default')) { + $table->dropForeign(sprintf('%s_to_ugi', 'object_groups')); + } + if (Schema::hasColumn('object_groups', 'user_group_id')) { + $table->dropColumn('user_group_id'); + } + } + ); + } catch (QueryException | ColumnDoesNotExist $e) { + app('log')->error(sprintf('Could not execute query: %s', $e->getMessage())); + app('log')->error('If the column or index already exists (see error), this is not an problem. Otherwise, please open a GitHub discussion.'); + } + } +}; diff --git a/database/seeders/ExchangeRateSeeder.php b/database/seeders/ExchangeRateSeeder.php index a46b56148e..4ed2e1630e 100644 --- a/database/seeders/ExchangeRateSeeder.php +++ b/database/seeders/ExchangeRateSeeder.php @@ -47,11 +47,11 @@ class ExchangeRateSeeder extends Seeder app('log')->debug('Will not seed exchange rates yet.'); return; } - $users = User::get(); - $date = config('cer.date'); - $rates = config('cer.rates'); + $users = User::get(); + $date = config('cer.date'); + $rates = config('cer.rates'); $usable = []; - $euro = $this->getCurrency('EUR'); + $euro = $this->getCurrency('EUR'); if (null === $euro) { return; } @@ -88,28 +88,28 @@ class ExchangeRateSeeder extends Seeder } /** - * @param User $user + * @param User $user * @param TransactionCurrency $from * @param TransactionCurrency $to - * @param string $date + * @param string $date * * @return bool */ private function hasRate(User $user, TransactionCurrency $from, TransactionCurrency $to, string $date): bool { return $user->currencyExchangeRates() - ->where('from_currency_id', $from->id) - ->where('to_currency_id', $to->id) - ->where('date', $date) - ->count() > 0; + ->where('from_currency_id', $from->id) + ->where('to_currency_id', $to->id) + ->where('date', $date) + ->count() > 0; } /** - * @param User $user + * @param User $user * @param TransactionCurrency $from * @param TransactionCurrency $to - * @param string $date - * @param float $rate + * @param string $date + * @param float $rate * * @return void */ @@ -117,12 +117,12 @@ class ExchangeRateSeeder extends Seeder { CurrencyExchangeRate::create( [ - 'user_id' => $user->id, - 'user_group_id' => $user->user_group_id ?? null, + 'user_id' => $user->id, + 'user_group_id' => $user->user_group_id ?? null, 'from_currency_id' => $from->id, - 'to_currency_id' => $to->id, - 'date' => $date, - 'rate' => $rate, + 'to_currency_id' => $to->id, + 'date' => $date, + 'rate' => $rate, ] ); }