revert index

This commit is contained in:
Hongbo Wu 2024-07-25 12:10:53 +08:00
parent 465e5dc7d1
commit c503b47ea2
2 changed files with 0 additions and 14 deletions

View file

@ -1,5 +0,0 @@
-- Type: DO
-- Name: add_user_id_created_at_index_to_library_item
-- Description: Add an index of columns user_id and created_at to the library_item table for counting query
CREATE INDEX CONCURRENTLY IF NOT EXISTS library_item_user_id_created_at_idx ON omnivore.library_item (user_id, created_at);

View file

@ -1,9 +0,0 @@
-- Type: UNDO
-- Name: add_user_id_created_at_index_to_library_item
-- Description: Add an index of columns user_id and created_at to the library_item table for counting query
BEGIN;
DROP INDEX IF EXISTS omnivore.library_item_user_id_created_at_idx;
COMMIT;