dropDatabaseIfExists method
Drops a database if it exists.
Implementation
void dropDatabaseIfExists(String name) {
_mutations.add(SchemaMutation.dropDatabase(name: name, ifExists: true));
}
Drops a database if it exists.
void dropDatabaseIfExists(String name) {
_mutations.add(SchemaMutation.dropDatabase(name: name, ifExists: true));
}