builder.column(schema, childTable, "one_id", 1, "MCOMPAT", "INT", true);
builder.pk(schema, childTable);
builder.indexColumn(schema, childTable, Index.PRIMARY, "id", 0, true, null);
String joinName = childTable + "/" + table;
builder.joinTables(joinName, schema, table, schema, childTable);
builder.joinColumns(joinName, schema, table, "id", schema, childTable, "one_id");
builder.addJoinToGroup(table, joinName, 0);
}
{