-- Allow packages kept only in the local server without exposing them through
-- /api/v1/games, which continues to select publish_status='published'.
ALTER TABLE games
    MODIFY COLUMN publish_status ENUM('local','draft','qa','published','disabled')
    NOT NULL DEFAULT 'draft';
