S replication_group_member_actions ( name CHAR(255) CHARACTER SET ASCII NOT NULL COMMENT 'The action name.', event CHAR(64) CHARACTER SET ASCII NOT NULL COMMENT 'The event that will trigger the action.', enabled BOOLEAN NOT NULL COMMENT 'Whether the action is enabled.', type CHAR(64) CHARACTER SET ASCII NOT NULL COMMENT 'The action type.', priority TINYINT UNSIGNED NOT NULL COMMENT 'The order on which the action will be run, value between 1 and 100, lower values first.', error_handling CHAR(64) CHARACTER SET ASCII NOT NULL COMMENT 'On errors during the action will be handled: IGNORE, CRITICAL.', PRIMARY KEY(name, event), KEY(event)) DEFAULT CHARSET=utf8mb4 STATS_PERSISTENT=0 COMMENT 'The member actions configuration.'";