omnivore/packages/db/migrations/0015.undo.user_unique_email.sql

11 lines
161 B
MySQL
Raw Normal View History

2022-02-11 17:24:33 +00:00
-- Type: UNDO
-- Name: user_unique_email
-- Description: add unique index to email
BEGIN;
ALTER TABLE omnivore.user
DROP CONSTRAINT email_unique;
COMMIT;