void dropAll(Iterable<String> tableNames, {bool cascade = false}) { for (var n in tableNames) { drop(n, cascade: cascade); } }