diff --git a/database/migrations/2025_06_04_101736_add_deleted_at_index_to_action_logs.php b/database/migrations/2025_06_04_101736_add_deleted_at_index_to_action_logs.php new file mode 100644 index 0000000000..c9f853599b --- /dev/null +++ b/database/migrations/2025_06_04_101736_add_deleted_at_index_to_action_logs.php @@ -0,0 +1,28 @@ +index('deleted_at'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('action_logs', function (Blueprint $table) { + $table->dropIndex('deleted_at'); + }); + } +}; diff --git a/resources/views/users/index.blade.php b/resources/views/users/index.blade.php index cbb7e2bac9..c9b6924d91 100755 --- a/resources/views/users/index.blade.php +++ b/resources/views/users/index.blade.php @@ -42,6 +42,7 @@ @include('partials.users-bulk-actions')