Hi,
I've read another thread on here about the same issue and was wondering if there had been any update on this as the workarounds seemed not ideal.
So I've got a really simple test case with an enum column which is
`completed` enum(\'Y\',\'N\') NOT NULL DEFAULT
which is generated as
@Column(name = "completed", length = 2)
@NotNull
private String Tasks.completed;
and i'd like it to be generated in the same way as the enum types are generated from the roo command line.
Thanks,
Tim.


Reply With Quote
