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
Hey @tomsun28, can you please elaborate the issue in detail, I am just getting started on places where I could contribute, I am happy to complete this.
hi welcome @dhruva1995.
Now we use jpa auto ddl to auto create table when startup first time. If we do not customize the table field type length, the default table field string length is varchar(255), which is not enough for some special fields such as tags, and will cause exception when the field is too long.
So this task is to config the special field string length in @Table file by using java code @Column(length = 2048)
Example Before.
Description
set the special field string length when jpa auto ddl
eg:
tags
field length 2048Task List
The text was updated successfully, but these errors were encountered: