dropAllTables method
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.',
);
}