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