mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
12 lines
211 B
PL/PgSQL
Executable file
12 lines
211 B
PL/PgSQL
Executable file
-- Type: DO
|
|
-- Name: drop_membership_from_user
|
|
-- Description: drop membership column from user table
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.user
|
|
DROP column membership;
|
|
|
|
DROP TYPE omnivore.membership_tier;
|
|
|
|
COMMIT;
|