mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
10 lines
234 B
PL/PgSQL
Executable file
10 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;
|