From d2e2a84d38a32ca77ac1b819498a48196ad238a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josip=20Crnkovi=C4=87?= <6536260+crnkovic@users.noreply.github.com> Date: Mon, 29 Jan 2024 13:12:16 +0100 Subject: [PATCH] Create 2024_01_29_120936_add_collection_id_deleted_at_index_to_nfts_table.php --- ...tion_id_deleted_at_index_to_nfts_table.php | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 database/migrations/2024_01_29_120936_add_collection_id_deleted_at_index_to_nfts_table.php diff --git a/database/migrations/2024_01_29_120936_add_collection_id_deleted_at_index_to_nfts_table.php b/database/migrations/2024_01_29_120936_add_collection_id_deleted_at_index_to_nfts_table.php new file mode 100644 index 000000000..1dfe4152f --- /dev/null +++ b/database/migrations/2024_01_29_120936_add_collection_id_deleted_at_index_to_nfts_table.php @@ -0,0 +1,20 @@ +index(['collection_id', 'deleted_at']); + }); + } +};