CREATE TABLE rt_background_settings_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,

    bp_id uuid NOT NULL,
    bp_name TEXT NOT NULL,
    bp_type TEXT NOT NULL,
    bp_settings TEXT NOT NULL,
    bp_revision BIGINT
);
