How can solve JSON column in H2

前端 未结 10 1904
隐瞒了意图╮
隐瞒了意图╮ 2020-12-24 13:39

I use in application MySQL 5.7 and I have JSON columns. When I try running my integration tests don\'t work because the H2 database can\'t create the table. This is the erro

10条回答
  •  情深已故
    2020-12-24 13:51

    H2 does not have the JSON data type.

    In MySQL the JSON type is just an alias for the LONGTEXT data type so the actual data type for the column will be LONGTEXT.

提交回复
热议问题