* @return the new ERXMigrationColumn
* @throws SQLException if the column cannot be created
*/
public ERXMigrationColumn newStringColumn(String name, boolean allowsNull, String defaultValue) throws SQLException {
ERXSQLHelper sqlHelper = ERXSQLHelper.newSQLHelper(_database.adaptorChannel());
return newColumn(name, sqlHelper.varcharLargeJDBCType(), sqlHelper.varcharLargeColumnWidth(), 0, 0, allowsNull, null, defaultValue);
}
/**
* Returns a new localized String column (VARCHAR). See newColumn(..) for the full docs.
*