Skip to content

Commit

Permalink
Merge pull request #6 from rob006/patch-1
Browse files Browse the repository at this point in the history
Fix unpaired quote in migration
  • Loading branch information
Naguissa authored Oct 11, 2022
2 parents 0dc7ba3 + 3a2c103 commit 7c193cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion naguissa/thanksforposts/migrations/v_4_0_0.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function update_notifications_serialization()
{

$update_sql = "UPDATE " . USER_NOTIFICATIONS_TABLE . "
SET notification_type_id = '" . $new_notification_row['notification_type_id'] . "
SET notification_type_id = " . $new_notification_row['notification_type_id'] . "
WHERE notification_type_id = " . $old_notification_row['notification_type_id'];
$this->sql_query($update_sql);

Expand Down

0 comments on commit 7c193cd

Please sign in to comment.