Remove old comment about await in loop

This commit is contained in:
Evan Hahn 2021-04-13 17:22:28 -05:00 committed by GitHub
parent ef781af0ce
commit 842d7980a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1663,7 +1663,6 @@ function updateSchema(db: Database): void {
for (let index = 0; index < maxUserVersion; index += 1) {
const runSchemaUpdate = SCHEMA_VERSIONS[index];
// Yes, we really want to do this asynchronously, in order
runSchemaUpdate(userVersion, db);
}
}