CREATE TABLE rt_background_settings_propositions (
    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,

    confirmations_need integer NOT NULL,
    proposition_id text NOT NULL,
    proposition_meta text,

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