dropAllTables method

  1. @override
Future<void> dropAllTables({
  1. String? schema,
})
override

Drops all tables from the database. Automatically handles foreign key constraints.

Implementation

@override
Future<void> dropAllTables({String? schema}) async {
  throw UnsupportedError(
    'SnapshotSchemaDriver does not support table operations.',
  );
}