Fully remove DQS from SQL queries

This commit is contained in:
Fedor Indutny 2023-01-18 17:06:07 -08:00 committed by GitHub
parent ebfd7a57dd
commit 6ddb12cd99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 17 additions and 17 deletions

View file

@ -138,7 +138,7 @@ export default function updateToSchemaVersion41(
db.exec(
`
DELETE FROM items WHERE id = "identityKey" OR id = "registrationId";
DELETE FROM items WHERE id = 'identityKey' OR id = 'registrationId';
`
);
};