CREATE TABLE document_queue_history (
    history_event_id SERIAL PRIMARY KEY,
    history_user_id uuid NOT NULL,
    history_action text NOT NULL,
    history_timestamp integer NOT NULL,
    history_comment text,
    history_originator_id text,

    id uuid NOT NULL,
    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
);
