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

    slave_role_id text NOT NULL,
    role_id text NOT NULL,
    link_meta jsonb
);
