-- Enable pgcrypto for gen_random_uuid() CREATE EXTENSION IF NOT EXISTS "pgcrypto"; -- Custom enum types CREATE TYPE user_role AS ENUM ('guest', 'host', 'admin'); CREATE TYPE export_type AS ENUM ('zip', 'html'); CREATE TYPE export_status AS ENUM ('pending', 'running', 'done', 'failed');