Skip to content

Commit

Permalink
fixed bug with updating storable class parents
Browse files Browse the repository at this point in the history
  • Loading branch information
brainfoolong committed Apr 14, 2024
1 parent 8fc338f commit 4859c76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ public function getQueries(): array
if ($existingSchemeData['id'] ?? null) {
$query = '
UPDATE ' . StorableSchema::SCHEMA_TABLE . '
SET storableClassParents =' . $this->db->escapeValue($storableClassParents) . '
SET storableClassParents = ' .$storableClassParents . '
WHERE id = ' . (int)$existingSchemeData['id'] . '
';
} else {
Expand Down

0 comments on commit 4859c76

Please sign in to comment.