typeorm 0.3.28-dev.797a8f5 → 0.3.28-dev.c16ef63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1517,7 +1517,7 @@ class SqlServerQueryRunner extends BaseQueryRunner_1.BaseQueryRunner {
1517
1517
  await this.query(`ALTER TABLE "${TABLE_CATALOG}"."${TABLE_SCHEMA}"."${TABLE_NAME}" ` +
1518
1518
  `DROP CONSTRAINT "${CONSTRAINT_NAME}" -- FROM CLEAR`);
1519
1519
  }));
1520
- await Promise.all(allTablesResults.map((tablesResult) => {
1520
+ await Promise.all(allTablesResults.map(async (tablesResult) => {
1521
1521
  if (tablesResult["TABLE_NAME"].startsWith("#")) {
1522
1522
  // don't try to drop temporary tables
1523
1523
  return;