Skip to content

Commit

Permalink
Merge pull request pkp#4381 from bozana/9813-1
Browse files Browse the repository at this point in the history
pkp/pkp-lib#9813 cast int to string
  • Loading branch information
bozana authored Jul 29, 2024
2 parents d3214bd + c0cd7aa commit dc27b24
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 dc27b24

Please sign in to comment.