Details
Description
If an event's price set has many options, the values will be truncated when stored in teh participant table, once the concatenated values reaches 255 characters in length. It is not critical, but the values will not be included in participant export files.
Suggested to increase the varchar(255) field length to a text field:
alter table civicrm_participant modify column fee_level text collate utf8_unicode_ci default NULL COMMENT 'Populate with the label (text) associated with a fee level for paid events with multiple levels. Note that we store the label value and not the key';
This may also be required in the contribution field, or other tables not known.