You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot insert big paragraphs using the fields. And when I increase the maximum size it displays
SQLSTATE[42000]: Syntax error or access violation: 1074 Column length too big for column 'content' (max = 21845); use BLOB or TEXT instead (SQL: ALTER TABLE pages CHANGE content content VARCHAR(65000) DEFAULT '' NOT NULL COLLATE utf8_unicode_ci)
The text was updated successfully, but these errors were encountered:
@Anuzz I had the same problem in the past with an INT column. I fixed it changing the colulmn type to BIGINT directly in the database. In your case, you can change your 'content' column type to TEXT directly in your database.
I cannot insert big paragraphs using the fields. And when I increase the maximum size it displays
SQLSTATE[42000]: Syntax error or access violation: 1074 Column length too big for column 'content' (max = 21845); use BLOB or TEXT instead (SQL: ALTER TABLE pages CHANGE content content VARCHAR(65000) DEFAULT '' NOT NULL COLLATE utf8_unicode_ci)
The text was updated successfully, but these errors were encountered: