CREATE TABLE refund_issues_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,
    session_id text NOT NULL,
    payment_id text NOT NULL,
    user_id uuid NOT NULL,
    sum integer DEFAULT 0,
    history_originator_id text
);
