diff --git a/packages/backend/migration/1660183643857-multipleTranslationServices.js b/packages/backend/migration/1660183643857-multipleTranslationServices.js index e06a9a2019..9c89a038b0 100644 --- a/packages/backend/migration/1660183643857-multipleTranslationServices.js +++ b/packages/backend/migration/1660183643857-multipleTranslationServices.js @@ -11,7 +11,7 @@ export class multipleTranslationServices1660183643857 { await queryRunner.query('SELECT "deeplAuthKey" FROM "meta" where "deeplAuthKey" is not null') .then(deeplAuthKey => { if (deeplAuthKey.length > 0) { - return queryRunner.query('UPDATE "meta" SET "translatorType" = "DeepL"'); + return queryRunner.query(`UPDATE "meta" SET "translatorType" = 'DeepL'`); } }) }