@pristine-ts/mysql 2.0.12 → 2.0.15
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.
|
@@ -8,4 +8,11 @@ export interface MysqlConfig {
|
|
|
8
8
|
debug: boolean;
|
|
9
9
|
database: string;
|
|
10
10
|
multipleStatements?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Name of the bookkeeping table used by `@pristine-ts/mysql-cli` to track applied
|
|
13
|
+
* SQL migrations. Defaults to `pristine_migrations`. Override only to match an
|
|
14
|
+
* existing convention or to avoid a collision in a database shared with another
|
|
15
|
+
* tool. Has no effect when `@pristine-ts/mysql-cli` is not in use.
|
|
16
|
+
*/
|
|
17
|
+
migrationsTableName?: string;
|
|
11
18
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pristine-ts/mysql",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"module": "dist/lib/esm/mysql.module.js",
|
|
6
6
|
"main": "dist/lib/cjs/mysql.module.js",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@pristine-ts/common": "^2.0.
|
|
24
|
-
"@pristine-ts/core": "^2.0.
|
|
25
|
-
"@pristine-ts/data-mapping": "^2.0.
|
|
26
|
-
"@pristine-ts/data-mapping-common": "^2.0.
|
|
23
|
+
"@pristine-ts/common": "^2.0.15",
|
|
24
|
+
"@pristine-ts/core": "^2.0.15",
|
|
25
|
+
"@pristine-ts/data-mapping": "^2.0.15",
|
|
26
|
+
"@pristine-ts/data-mapping-common": "^2.0.15",
|
|
27
27
|
"@pristine-ts/metadata": "^1.0.16",
|
|
28
|
-
"@pristine-ts/mysql-common": "^2.0.
|
|
29
|
-
"@pristine-ts/security": "^2.0.
|
|
30
|
-
"@pristine-ts/telemetry": "^2.0.
|
|
28
|
+
"@pristine-ts/mysql-common": "^2.0.15",
|
|
29
|
+
"@pristine-ts/security": "^2.0.15",
|
|
30
|
+
"@pristine-ts/telemetry": "^2.0.15",
|
|
31
31
|
"mysql2": "^3.10.0",
|
|
32
32
|
"tsyringe": "^4.8.0"
|
|
33
33
|
},
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"src/*.{js,ts}"
|
|
66
66
|
]
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "22ffa953ae37cf2375403614293fed9b1afdf606",
|
|
69
69
|
"repository": {
|
|
70
70
|
"type": "git",
|
|
71
71
|
"url": "https://github.com/magieno/pristine-ts.git",
|