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

    user_id uuid NOT NULL,
    account_id bigint NOT NULL,
    type_id bigint
);
