.getDataMap()
.isQuotingSQLIdentifiers());
StringBuilder buf = new StringBuilder();
// http://dev.mysql.com/tech-resources/articles/mysql-cluster-50.html
buf.append("ALTER TABLE ");
buf.append(context.quoteFullyQualifiedName(entity));
buf.append(" DROP FOREIGN KEY ");
buf.append(fkName);
return Collections.singletonList(buf.toString());
}