Skip to content

Commit 5802679

Browse files
committed
FIX: Renamed 'batch_uuid' field to 'batch' in ActivityLogService
The field was renamed to match the column name in the database and to maintain consistency across the codebase.
1 parent 01fd763 commit 5802679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Services/Activity/ActivityLogService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ protected function getActivity(): ActivityLog
199199

200200
$this->activity = new ActivityLog([
201201
'ip' => Request::ip(),
202-
'batch_uuid' => $this->batch->uuid(),
202+
'batch' => $this->batch->uuid(),
203203
'properties' => Collection::make([]),
204204
'api_key_id' => $this->targetable->apiKeyId(),
205205
]);

0 commit comments

Comments
 (0)