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

    action_id text NOT NULL,
    role_id text NOT NULL,
    role_action_meta jsonb
);
