Files
omnivore/packages/db/migrations/0161.undo.add_subscriptions_name_index.sql
2024-02-06 11:01:39 +08:00

10 lines
196 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: add_subscriptions_name_index
-- Description: Add an index to the subscriptions name column
BEGIN;
DROP INDEX IF EXISTS omnivore.subscriptions_user_id_name_index;
COMMIT;