fix unique annotations parse issue, was a typo
This commit is contained in:
parent
0f9a83611e
commit
420cec8c7a
|
@ -74,7 +74,7 @@ public class Column {
|
|||
|
||||
AnnotationValue uniqueValue = columnAnnotation.value( "unique" );
|
||||
if ( uniqueValue != null ) {
|
||||
this.unique = nameValue.asBoolean();
|
||||
this.unique = uniqueValue.asBoolean();
|
||||
}
|
||||
|
||||
AnnotationValue nullableValue = columnAnnotation.value( "nullable" );
|
||||
|
|
Loading…
Reference in New Issue