models-0.7.9

This commit is contained in:
Steve Ebersole 2024-04-23 17:03:22 -05:00
parent f8311935ee
commit ca28afddaf
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ public class BasicValueHelper {
final var columnAnn = member.getAnnotationUsage( annotationType );
final var column = ColumnHelper.bindColumn( columnAnn, defaultNameSupplier );
var tableName = columnAnn.getString( "table" );
var tableName = BindingHelper.getValue( columnAnn, "table", "" );
if ( StringHelper.isEmpty( tableName ) ) {
basicValue.setTable( primaryTable );
}