CREATE TABLE yang_assignments (
    id uuid NOT NULL,
    is_fraud character varying(16),
    comments text,
    workers character varying(320),
    created_at timestamp with time zone NOT NULL,
    processed_at timestamp with time zone,
    license_back_id uuid,
    license_front_id uuid,
    license_selfie_id uuid,
    passport_biographical_id uuid,
    passport_registration_id uuid,
    passport_selfie_id uuid,
    selfie_id uuid,
    license_video_id uuid,
    passport_video_id uuid,
    video_selfie_id uuid,
    assignment_ids character varying(640),
    ingested_at timestamp with time zone,
    finalized_at timestamp with time zone,
    is_experimental boolean,
    fraud_reasons character varying(32),
    user_id uuid,
    history text
);
