mythix-orm-postgresql 1.11.1 → 1.11.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.
- package/README.md +4 -2
- package/docs/Home.md +4 -2
- package/docs/mythix-logo-colored.png +0 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# mythix-orm-postgresql
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
PostgreSQL database driver for [Mythix ORM](https://www.npmjs.com/package/mythix-orm).
|
|
4
6
|
|
|
5
7
|
## Install
|
|
6
8
|
|
|
@@ -52,7 +54,7 @@ const { PostgreSQLConnection } = require('mythix-orm-postgresql');
|
|
|
52
54
|
| `models` | `Array<Model>` | `undefined` | Models to register with the connection (these models will be bound to the connection if the `boundModels` option is `true`).
|
|
53
55
|
| `password` | `string` | `undefined` | The password used to connect to the database. |
|
|
54
56
|
| `port` | `string` | `5432` | The port used to connect to the database. |
|
|
55
|
-
| `queryGenerator` | [QueryGenerator](https://github.com/th317erd/mythix-orm/wiki/QueryGeneratorBase) | <see>PostgreSQLQueryGenerator</see> | Provide an alternate `QueryGenerator` interface for generating SQL statements for
|
|
57
|
+
| `queryGenerator` | [QueryGenerator](https://github.com/th317erd/mythix-orm/wiki/QueryGeneratorBase) | <see>PostgreSQLQueryGenerator</see> | Provide an alternate `QueryGenerator` interface for generating SQL statements for PostgreSQL. This is not usually needed, as the `SQLiteConnection` itself will provide its own generator interface. However, if you want to customize the default query generator, or want to provide your own, you can do so using this option. |
|
|
56
58
|
| `queryTimeout` | `number` | `15000` | Number of milliseconds before a query call will timeout. |
|
|
57
59
|
| `statementTimeout` | `number` | `15000` | Number of milliseconds before a statement in query will time out. |
|
|
58
60
|
| `user` | `string` | `undefined` | The username used to connect to the database. |
|
package/docs/Home.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
PostgreSQL database driver for [Mythix ORM](https://www.npmjs.com/package/mythix-orm).
|
|
2
4
|
|
|
3
5
|
## Install
|
|
4
6
|
|
|
@@ -48,7 +50,7 @@ const { PostgreSQLConnection } = require('mythix-orm-postgresql');
|
|
|
48
50
|
| `models` | `Array<Model>` | `undefined` | Models to register with the connection (these models will be bound to the connection if the `boundModels` option is `true`).
|
|
49
51
|
| `password` | `string` | `undefined` | The password used to connect to the database. |
|
|
50
52
|
| `port` | `string` | `5432` | The port used to connect to the database. |
|
|
51
|
-
| `queryGenerator` | [QueryGenerator](https://github.com/th317erd/mythix-orm/wiki/QueryGeneratorBase) | <see>PostgreSQLQueryGenerator</see> | Provide an alternate `QueryGenerator` interface for generating SQL statements for
|
|
53
|
+
| `queryGenerator` | [QueryGenerator](https://github.com/th317erd/mythix-orm/wiki/QueryGeneratorBase) | <see>PostgreSQLQueryGenerator</see> | Provide an alternate `QueryGenerator` interface for generating SQL statements for PostgreSQL. This is not usually needed, as the `SQLiteConnection` itself will provide its own generator interface. However, if you want to customize the default query generator, or want to provide your own, you can do so using this option. |
|
|
52
54
|
| `queryTimeout` | `number` | `15000` | Number of milliseconds before a query call will timeout. |
|
|
53
55
|
| `statementTimeout` | `number` | `15000` | Number of milliseconds before a statement in query will time out. |
|
|
54
56
|
| `user` | `string` | `undefined` | The username used to connect to the database. |
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mythix-orm-postgresql",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.3",
|
|
4
4
|
"description": "PostgreSQL driver for Mythix ORM",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/th317erd/mythix-orm-postgresql#readme",
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"mythix-orm": "^1.13.
|
|
37
|
-
"mythix-orm-sql-base": "^1.11.
|
|
36
|
+
"mythix-orm": "^1.13.2",
|
|
37
|
+
"mythix-orm-sql-base": "^1.11.1"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"luxon": "^3.1.0",
|