mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
7 lines
231 B
SQL
Executable file
7 lines
231 B
SQL
Executable file
-- Type: DO
|
|
-- Name: add_subscriptions_name_index
|
|
-- Description: Add an index to the subscriptions name column
|
|
|
|
|
|
CREATE INDEX CONCURRENTLY IF NOT EXISTS subscriptions_user_id_name_index ON omnivore.subscriptions (user_id, name);
|
|
|