CREATE TABLE drive_role_actions (
    action_id text NOT NULL,
    role_id text NOT NULL,
    role_action_meta jsonb,

    PRIMARY KEY(action_id, role_id),
    FOREIGN KEY(action_id) REFERENCES drive_tag_actions(action_id),
    FOREIGN KEY(role_id) REFERENCES drive_roles(role_id)
);
