CREATE TABLE takeout_requests (
    id uuid NOT NULL,
    job_id text NOT NULL,
    user_id character varying(36) NOT NULL,
    enqueued_at integer NOT NULL,
    processing_started_at integer,
    processing_completed_at integer
);
