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

11 lines
155 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: user_unique_email
-- Description: add unique index to email
BEGIN;
ALTER TABLE omnivore.user
DROP COLUMN updated_at;
COMMIT;