mythix-orm-postgresql 1.2.2 → 1.2.3

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.
@@ -236,7 +236,7 @@ class PostgreSQLConnection extends SQLConnectionBase {
236
236
  let queryGenerator = this.getQueryGenerator();
237
237
  let sqlStatement = queryGenerator.generateTruncateTableStatement(Model, options);
238
238
 
239
- return await this.query(sqlStatement);
239
+ return await this.query(sqlStatement, options);
240
240
  }
241
241
 
242
242
  _intTypeToSerial(type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mythix-orm-postgresql",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "PostgreSQL driver for Mythix ORM",
5
5
  "main": "lib/index.js",
6
6
  "type": "commonjs",
@@ -34,7 +34,7 @@
34
34
  "homepage": "https://github.com/th317erd/mythix-orm-postgresql#readme",
35
35
  "peerDependencies": {
36
36
  "mythix-orm": "^1.3.0",
37
- "mythix-orm-sql-base": "^1.1.1"
37
+ "mythix-orm-sql-base": "^1.1.2"
38
38
  },
39
39
  "dependencies": {
40
40
  "nife": "^1.11.3",