withoutForeignKeyConstraints<T> method

  1. @override
Future<T> withoutForeignKeyConstraints<T>(
  1. Future<T> callback()
)
override

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