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

    role_id text NOT NULL,
    role_description text,
    role_data text,
    role_optional boolean,
    role_is_public boolean,
    role_group integer,
    role_is_idm boolean,
    role_groupping_tags text
);
