if (scol == null) {
// There is no existing column: create one
scol = new SpeedoColumn();
scol.name = cn;
scol.allowNull = false;
if (! a.columnDefinition().equals("")) {
scol.sqlType = a.columnDefinition();
}
scol.length = a.length();
scol.table = sc.mainTable;
}