-
Notifications
You must be signed in to change notification settings - Fork 14
Description
On a site with an extensive webform (numerous conditionals), the Database update 1609 failed with a PDOException. The db update is for adding a column to the webform table regarding the "Go back to the form" link.
Failed: PDOException: SQLSTATE[42000]: Syntax error or access violation: 1118 Row size too large. The maximum row size for the used table type, not counting BLOBs, is 8126. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs: ALTER TABLE {webform} ADD back_to_form_link TINYINT NOT NULL DEFAULT 1 COMMENT 'Boolean value for whether to show or hide the "Go back to the form" link.'; Array ( ) in db_add_field() (line 3143 of (…)/core/includes/database/database.inc).
The message says, I have to "change some columns to TEXT or BLOBs". Hm, are there other ways to work around the issue?