Object defaultValue = dictionary.valueForKey("Default");
if (defaultValue == null) {
defaultValue = dictionary.valueForKey("er.extensions.eoattribute.default"); // deprecated key
}
if (defaultValue == null) {
defaultValue = dictionary.valueForKey("default");
}
if (defaultValue != null) {
sql.append(" DEFAULT ");
sql.append(formatValueForAttribute(defaultValue, attribute));
}