Skip to content

Commit

Permalink
pkp/pkp-lib#9813 cast int to string
Browse files Browse the repository at this point in the history
  • Loading branch information
bozana committed Jul 29, 2024
1 parent d3214bd commit c0cd7aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function up(): void

foreach ($this->getStepMap() as $oldValue => $newValue) {
DB::table('submissions')
->where('submission_progress', $oldValue)
->where('submission_progress', (string) $oldValue)
->update([
'submission_progress' => $newValue,
]);
Expand Down

0 comments on commit c0cd7aa

Please sign in to comment.