.getDataMap()
.isQuotingSQLIdentifiers());
sqlBuffer.append("ALTER TABLE ");
sqlBuffer.append(context.quoteFullyQualifiedName(getEntity()));
sqlBuffer.append(" ALTER COLUMN ");
sqlBuffer.append(context.quoteString(getColumn().getName()));
sqlBuffer.append(" NULL");
return Collections.singletonList(sqlBuffer.toString());
}