mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
5 lines
220 B
SQL
Executable file
5 lines
220 B
SQL
Executable file
-- Type: DO
|
|
-- Name: library_item_topic_idx
|
|
-- Description: Create index on topic column in library_item table
|
|
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS library_item_topic_idx ON omnivore.library_item USING GIST (topic);
|