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":
drush sqlcALTER TABLE webform_component MODIFY extra LONGTEXT;exit
I was surprised not to see many issues like this so I figured I'd post the solution
Comments