HHH-10451 - Fix Add table comment to 'create table...' statement
This commit is contained in:
parent
8e32162cab
commit
43db914f0d
|
@ -140,6 +140,11 @@ public class StandardTableExporter implements Exporter<Table> {
|
|||
applyTableCheck( table, buf );
|
||||
|
||||
buf.append( ')' );
|
||||
|
||||
if ( table.getComment() != null ) {
|
||||
buf.append( dialect.getTableComment( table.getComment() ) );
|
||||
}
|
||||
|
||||
applyTableTypeString( buf );
|
||||
|
||||
List<String> sqlStrings = new ArrayList<String>();
|
||||
|
|
Loading…
Reference in New Issue