omnivore/packages/db/migrations/0038.undo.user_names.sql

11 lines
234 B
MySQL
Raw Normal View History

2022-02-11 17:24:33 +00:00
-- 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;