We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a259560 commit 60d5b40Copy full SHA for 60d5b40
data-store/migrations/2024-03-14-140922_index_metadata_id/down.sql
@@ -0,0 +1,2 @@
1
+DROP INDEX erc721_metadata_ind;
2
+DROP INDEX erc1155_metadata_ind;
data-store/migrations/2024-03-14-140922_index_metadata_id/up.sql
+CREATE INDEX erc721_metadata_ind ON nfts (metadata_id);
+CREATE INDEX erc1155_metadata_ind ON erc1155s (metadata_id);
0 commit comments