table = "child";
builder.table(schema, table);
builder.column(schema, table, "col1", 0, "MCOMPAT", "BIGINT", null, false, null, null);
builder.column(schema, table, "col2", 1, "MCOMPAT", "BIGINT", null, true, null, null);
builder.pk(schema, table);
builder.indexColumn(schema, table, Index.PRIMARY, "col1", 0, true, null);
builder.foreignKey(schema, "child", Arrays.asList("col2"), schema, "parent", Arrays.asList("col1"), ForeignKey.Action.RESTRICT, ForeignKey.Action.RESTRICT, true, true, "fkey_parent");
builder.createGroup(table, schema);
builder.addTableToGroup(table, schema, table);
}