dropSchemaIfExists abstract method

Future<bool> dropSchemaIfExists(
  1. String name
)

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);