typeorm 0.3.28-dev.9ea8577 → 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.
@@ -1514,7 +1514,7 @@ export class SqlServerQueryRunner extends BaseQueryRunner {
1514
1514
  await this.query(`ALTER TABLE "${TABLE_CATALOG}"."${TABLE_SCHEMA}"."${TABLE_NAME}" ` +
1515
1515
  `DROP CONSTRAINT "${CONSTRAINT_NAME}" -- FROM CLEAR`);
1516
1516
  }));
1517
- await Promise.all(allTablesResults.map((tablesResult) => {
1517
+ await Promise.all(allTablesResults.map(async (tablesResult) => {
1518
1518
  if (tablesResult["TABLE_NAME"].startsWith("#")) {
1519
1519
  // don't try to drop temporary tables
1520
1520
  return;