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:
Juraci Krohling 2008-12-12 15:37:44 +00:00
parent becf5568a4
commit 4d23b82803
1 changed files with 1 additions and 0 deletions

View File

@ -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( ' ' )