Skip to content

Commit

Permalink
Fix #235
Browse files Browse the repository at this point in the history
Use double quote instead of backtick in migrations, because they get executed through shell.
  • Loading branch information
michielbdejong authored Aug 29, 2023
1 parent f6105d7 commit c8b98ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function changeSchema(Schema $schema, array $options)

$fg_group_user_table->addUniqueIndex(
['gid', 'uid'],
`{$prefix}uc_fg_group_user`
"{$prefix}uc_fg_group_user"
);
}
}
Expand Down

0 comments on commit c8b98ac

Please sign in to comment.