typeorm 0.3.21-dev.83567f5 → 0.3.21-dev.a3a7d75

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.
@@ -416,7 +416,11 @@ export class PostgresQueryRunner extends BaseQueryRunner {
416
416
  });
417
417
  }
418
418
  if (table.comment) {
419
- upQueries.push(new Query("COMMENT ON TABLE " + this.escapePath(table) + " IS '" + table.comment + "'"));
419
+ upQueries.push(new Query("COMMENT ON TABLE " +
420
+ this.escapePath(table) +
421
+ " IS '" +
422
+ table.comment +
423
+ "'"));
420
424
  downQueries.push(new Query("COMMENT ON TABLE " + this.escapePath(table) + " IS NULL"));
421
425
  }
422
426
  await this.executeQueries(upQueries, downQueries);