dropSchemaIfExists abstract method
Drops a schema/namespace if it exists.
For PostgreSQL, this drops the schema and all objects within it (CASCADE). Returns true if dropped, false if didn't exist.
Implementation
Future<bool> dropSchemaIfExists(String name);