我的mysql不支持text

在我的项目中,我使用了MySQL作为数据库管理系统。但是最近我遇到了一个问题,当我尝试向数据库中插入大量文本数据时,MySQL提示我不能使用text类型。

CREATE TABLE messages ( id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, message TEXT DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; INSERT INTO messages (message) VALUES ("This is a very long message..."); ERROR 1118 (42000): Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs