mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
204 B
PL/PgSQL
Executable file
11 lines
204 B
PL/PgSQL
Executable file
-- Type: UNDO
|
|
-- Name: add_status_to_user
|
|
-- Description: Add status to user table
|
|
|
|
BEGIN;
|
|
|
|
DROP TYPE IF EXISTS user_status_type CASCADE;
|
|
|
|
ALTER TABLE omnivore.user DROP COLUMN IF EXISTS status;
|
|
|
|
COMMIT;
|