Files
omnivore/packages/db/migrations/0055.undo.remove_article_url_hash_constraint.sql
2022-02-11 09:24:33 -08:00

10 lines
207 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: remove_article_url_hash_constraint
-- Description: Articles do not need a unique url and hash anymore
BEGIN;
ALTER TABLE omnivore.article ADD constraint UNIQUE(url, hash) ;
COMMIT;