CREATE TABLE document_queue (
    id uuid PRIMARY KEY,
    status text,
    error text,
    result_output text,
    inputs text,
    create_time integer NOT NULL default 0,
    last_update integer NOT NULL default 0,
    author text not null
);
