当我将应用程序上传到 cloudbees 时,我的日志中出现此错误
[[31merror[0m] play - 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 'desc varchar(255),
kind varchar(255),
' at line 4 [ERROR:1064, SQLSTATE:42000]
在对 SO 进行一些谷歌搜索和浏览问题后,我认为问题在于 desc 是 mysql 中的关键字而不是 H2 中的关键字,因此我将 desc 更改为 description 并重新部署了我的应用程序。但现在我再次得到与 desc 完全相同的错误。我是否必须手动执行进化脚本来覆盖这些值或什么?