gorm - 执行数据库迁移操作时异常:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'json

起因:执行数据库迁移操作时异常

Error 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'json,`creator` varchar(32),`updater` varchar(32),`created_at` datetime(3) NULL,`' at line 1

 

原因:迁移数据中有json格式的字段,但由于你的mysql版本较低,无法适配。

解决:mysql 升级到5.7.8及以上版本即可(5.7.8 开始支持原生的 json 数据类型)。

 

posted @ 2024-11-27 00:10  _Q  阅读(24)  评论(0编辑  收藏  举报