diff --git a/database/migrations/2022_12_07_135043_alter_lead_table_add_full_text_search.php b/database/migrations/2022_12_07_135043_alter_lead_table_add_full_text_search.php index 3aafb6de..3ee1fa55 100755 --- a/database/migrations/2022_12_07_135043_alter_lead_table_add_full_text_search.php +++ b/database/migrations/2022_12_07_135043_alter_lead_table_add_full_text_search.php @@ -1,19 +1,12 @@ command = $command; - } - /** * Run the migrations. * @@ -31,7 +24,7 @@ public function up() }); } else { // Output a warning indicating that the database driver does not support fulltext index creation - $this->command->info('Warning: Fulltext index creation is not supported by this database driver.'); + Log::warning('Warning: Fulltext index creation is not supported by this database driver.'); } } @@ -52,7 +45,7 @@ public function down() }); } else { // Output a warning indicating that the database driver does not support fulltext index creation - $this->command->info('Warning: Fulltext index creation is not supported by this database driver.'); + Log::warning('Warning: Fulltext index creation is not supported by this database driver.'); } } }; diff --git a/database/migrations/2023_04_27_190843_add_fulltext_index_to_customer_table.php b/database/migrations/2023_04_27_190843_add_fulltext_index_to_customer_table.php index d85751ae..1d6cacc0 100755 --- a/database/migrations/2023_04_27_190843_add_fulltext_index_to_customer_table.php +++ b/database/migrations/2023_04_27_190843_add_fulltext_index_to_customer_table.php @@ -1,19 +1,12 @@ command = $command; - } - /** * Run the migrations. * @@ -31,7 +24,7 @@ public function up() }); } else { // Output a warning indicating that the database driver does not support fulltext index creation - $this->command->info('Warning: Fulltext index creation is not supported by this database driver.'); + Log::warning('Warning: Fulltext index creation is not supported by this database driver.'); } } @@ -52,7 +45,7 @@ public function down() }); } else { // Output a warning indicating that the database driver does not support fulltext index creation - $this->command->info('Warning: Fulltext index creation is not supported by this database driver.'); + Log::warning('Warning: Fulltext index creation is not supported by this database driver.'); } } }; diff --git a/version.php b/version.php index cc8ecd07..51a08a10 100755 --- a/version.php +++ b/version.php @@ -1,3 +1,3 @@