/** Construct with a naming convention and platform specific DDL. */
 public BaseTableDdl(ServerConfig serverConfig, PlatformDdl platformDdl) {
   this.namingConvention = serverConfig.getNamingConvention();
   this.naming = serverConfig.getConstraintNaming();
   this.historyTableSuffix = serverConfig.getHistoryTableSuffix();
   this.platformDdl = platformDdl;
   this.platformDdl.configure(serverConfig);
 }