From 092d9d1e42a94e495e8906dcd832ea2f1450f480 Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Wed, 4 Jun 2025 11:23:09 +0100 Subject: [PATCH 1/2] Add deleted_at index to action_logs for people with many deleted action_logs --- ...36_add_deleted_at_index_to_action_logs.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 database/migrations/2025_06_04_101736_add_deleted_at_index_to_action_logs.php 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'); + }); + } +}; From fdb5ab229305a99db2d8e84051019da805f76709 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 4 Jun 2025 11:46:38 +0100 Subject: [PATCH 2/2] Added advanced search to users Signed-off-by: snipe --- resources/views/users/index.blade.php | 1 + 1 file changed, 1 insertion(+) 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')