From de643ee51b63ad22c36d7905f61ee06e5559fbae Mon Sep 17 00:00:00 2001 From: FreeScout Date: Mon, 13 Nov 2023 22:01:59 -0800 Subject: [PATCH] Remove max length limitation from mailbox Aliases field - closes #3525 --- config/app.php | 2 +- ...ange_aliases_column_in_mailboxes_table.php | 31 +++++++++++++++++++ resources/views/mailboxes/update.blade.php | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 database/migrations/2023_11_14_010101_change_aliases_column_in_mailboxes_table.php diff --git a/config/app.php b/config/app.php index 40af0f3cb..eff530f16 100644 --- a/config/app.php +++ b/config/app.php @@ -188,7 +188,7 @@ | Checks for new jobs every --sleep seconds. | If --tries is set and job fails it is being processed right away without any delay. | --delay parameter does not work to set delays between retry attempts. - | --timeout parameter sets job timeout and is used to avoid queue:work stucking. + | --timeout parameter sets job timeout and is used to avoid queue:work freezing. | | Jobs sending emails are retried manually in handle(). | Number of retries is set in each job class. diff --git a/database/migrations/2023_11_14_010101_change_aliases_column_in_mailboxes_table.php b/database/migrations/2023_11_14_010101_change_aliases_column_in_mailboxes_table.php new file mode 100644 index 000000000..10ca46a97 --- /dev/null +++ b/database/migrations/2023_11_14_010101_change_aliases_column_in_mailboxes_table.php @@ -0,0 +1,31 @@ +text('aliases')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + + } +} diff --git a/resources/views/mailboxes/update.blade.php b/resources/views/mailboxes/update.blade.php index ce9fa6378..fb9626ee5 100644 --- a/resources/views/mailboxes/update.blade.php +++ b/resources/views/mailboxes/update.blade.php @@ -56,7 +56,7 @@
- +