I am not native.
I needed to use default value in jpa.I referenced this and then I used @ColumnDefault. It works good.But I want to know role of value field of @ColumnDefault. comment of value of @ColumnDefault
The DEFAULT definition to apply to the DDL.
But I don't know what means DEFAULT definition? Even if I use @ColumnDefault("5000"), It is not applied 5000 only is applied default value 1000 of DDL.
What is role of value field of @ColumnDefault?
Thank you.