fix: cannot execute migration script

This commit is contained in:
아르페 2023-10-03 21:25:08 +09:00 committed by GitHub
parent 59950a019b
commit 5e84d690d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ export class multipleTranslationServices1660183643857 {
await queryRunner.query('SELECT "deeplAuthKey" FROM "meta" where "deeplAuthKey" is not null') await queryRunner.query('SELECT "deeplAuthKey" FROM "meta" where "deeplAuthKey" is not null')
.then(deeplAuthKey => { .then(deeplAuthKey => {
if (deeplAuthKey.length > 0) { if (deeplAuthKey.length > 0) {
return queryRunner.query('UPDATE "meta" SET "translatorType" = "DeepL"'); return queryRunner.query(`UPDATE "meta" SET "translatorType" = 'DeepL'`);
} }
}) })
} }