Files
omnivore/packages/db/migrations/0188.undo.add_archived_status_to_user.sql
2024-08-29 14:23:32 +08:00

10 lines
184 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: add_archived_status_to_user
-- Description: Add ARCHIVED status to the user table
BEGIN;
ALTER TYPE user_status_type DROP VALUE IF EXISTS 'ARCHIVED';
COMMIT;