* {@inheritDoc}
*/
protected void initialize(final DDLGenConfiguration conf) {
// numeric types
LOG.warn("Db2 does not support 'BIT' type.");
this.add(new NotSupportedType("bit"));
LOG.warn("Db2 does not support 'TINY' type, use SMALLINT instead.");
this.add(new NoParamType("tinyint", "SMALLINT"));
this.add(new NoParamType("smallint", "SMALLINT"));
this.add(new NoParamType("integer", "INTEGER"));
this.add(new NoParamType("int", "INTEGER"));