// Move from the return statement below so we can add
// some AUTOINC meta data to the column to be used by
// the ParserUtil and ultimately the template.
log.info("\tCOLUMN:\t" + name + " ("+empireType+")");
DBTableColumn col = t.addColumn(name, empireType, colSize, required, defaultValue);
// We still need to know the base data type for this AUTOINC
// because the Record g/setters need to know this, right?
// So, let's add it as meta data every time the column is AUTOINC
// and reference it in the template.
if(empireType.equals(DataType.AUTOINC))
col.setAttribute("AutoIncDataType", originalType);
return col;
}