11 lines
234 B
PL/PgSQL
Executable File
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;
|