Files
omnivore/packages/db/migrations/0188.do.add_archived_status_to_user.sql
2024-08-29 18:00:42 +08:00

10 lines
185 B
PL/PgSQL
Executable File

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