NSLog.debug.appendln("In dropTableStatementsForEntityGroup (no s)");
EOEntity entity = entityGroup.objectAtIndex(0);
String dropType = " CASCADE";
if (entity.userInfo() != null) {
NSDictionary dictionary = entity.userInfo();
if (dictionary.valueForKey("Restrict") != null && ((String) dictionary.valueForKey("Restrict")).equals("true"))
dropType = " RESTRICT";
}
EOSQLExpression expression = _expressionForString("DROP TABLE " + quoteTableName(entity.externalName()) + dropType);