HHH-3650 - Added fixed 'not null' to the create-table statement
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15690 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
becf5568a4
commit
4d23b82803
|
@ -518,6 +518,7 @@ public class TableGenerator extends TransactionHelper implements PersistentIdent
|
|||
.append( segmentColumnName )
|
||||
.append( ' ' )
|
||||
.append( dialect.getTypeName( Types.VARCHAR, segmentValueLength, 0, 0 ) )
|
||||
.append( " not null " )
|
||||
.append( ", " )
|
||||
.append( valueColumnName )
|
||||
.append( ' ' )
|
||||
|
|
Loading…
Reference in New Issue