StringBuilder buf = new StringBuilder();
QuotingStrategy context = adapter.getQuotingStrategy(getEntity()
.getDataMap()
.isQuotingSQLIdentifiers());
buf.append("ALTER TABLE ");
buf.append(context.quoteFullyQualifiedName(getEntity()));
buf.append(" DROP COLUMN ");
buf.append(context.quoteString(getColumn().getName()));
buf.append(" RESTRICT ");
return Collections.singletonList(buf.toString());