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

11 lines
234 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: user_full_names
-- Description: Move from first + last name to fullnames in the user database
BEGIN;
-- Remove the fullname column from the user table
ALTER TABLE omnivore.user DROP COLUMN full_name;
COMMIT;