Simplify sqlJoin required arguments

This commit is contained in:
trevor-signal 2023-11-22 17:48:53 -05:00 committed by GitHub
parent e87873c929
commit c3248be854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 13 deletions

View file

@ -3447,7 +3447,7 @@ describe('SQL migrations test', () => {
ON
messages.id = mentions.messageId
AND mentions.mentionUuid IN (
${sqlJoin(['a', 'b', 'c'], ', ')}
${sqlJoin(['a', 'b', 'c'])}
)
AND messages.isViewOnce IS NOT 1
AND messages.storyId IS NULL