withoutForeignKeyConstraints<T> method
Executes a callback with foreign key constraints disabled. Automatically re-enables constraints after callback completes.
Implementation
@override
Future<T> withoutForeignKeyConstraints<T>(
Future<T> Function() callback,
) async {
throw UnsupportedError(
'SnapshotSchemaDriver does not support FK constraint control.',
);
}