8 lines
231 B
SQL
Executable File
8 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);
|
|
|