-- Add moderation_flags collection to Directus INSERT INTO directus_collections (collection, icon, note, hidden, singleton) VALUES ('moderation_flags', 'flag', 'AI-powered content moderation flags', false, false) ON CONFLICT (collection) DO NOTHING; -- Add user_status_history collection to Directus INSERT INTO directus_collections (collection, icon, note, hidden, singleton) VALUES ('user_status_history', 'history', 'User status change history for audit trail', false, false) ON CONFLICT (collection) DO NOTHING;