Trying to create a component (select list) with 1800+ selectable options - the component was unable to be saved, producing an error.

Solved by changing the `extra` column in the `webform_component` table from "text" (I think that's what it was) to "long text":

  1. drush sqlc
  2. ALTER TABLE webform_component MODIFY extra LONGTEXT;
  3. exit

I was surprised not to see many issues like this so I figured I'd post the solution

Comments

ahillio created an issue.