Hi everybody.
I'm just getting started and encountered confusing situation when adding some property to column like nullable or length=... doesn't being detected by SchemaValidator.
For example, I have the following column:
Code:
@Column(name = "MESSAGE_TEXT")
private String text;
When I change it to the following, SchemaValidator doesn't detect changes:
Code:
@Column(name = "MESSAGE_TEXT", length = 50)
private String text;
I tried this trick with annotations and mapping file and also with 'nullable' property, nothing works.
I suppose you will answer that validator doesn't support these, but can I somehow detect these changes to have at least be aware of them so I could manually edit database schema?
Thanks a lot !