10 lines
159 B
PL/PgSQL
Executable File
10 lines
159 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: add_password_to_user
|
|
-- Description: Add password field to user table
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.user DROP COLUMN password;
|
|
|
|
COMMIT;
|