For table email_fier
I try to change the type of field:
ALTER TABLE email_verifiers MODIFY COLUMN name text
I am getting this error:
#1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline.
I also tried:
ALTER TABLE email_verifiers MODIFY COLUMN name text(6000)