ente/server/migrations/83_fix_ott_index.down.sql
2024-04-09 11:14:44 +05:30

9 lines
193 B
PL/PgSQL

BEGIN;
ALTER TABLE
otts DROP CONSTRAINT IF EXISTS unique_otts_emailhash_app_ott;
ALTER TABLE
otts
ADD
CONSTRAINT unique_otts_emailhash_ott UNIQUE (ott, email_hash);
COMMIT;