@zintrust/d1-migrator 1.8.9 → 1.9.0
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 +6 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -86,6 +86,12 @@ export D1_TARGET_DB=zintrust-live-test
|
|
|
86
86
|
zin migrate-to-d1
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
+
If your source MySQL or MariaDB server requires SSL/TLS, run:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
DB_SSL=true MIGRATE_TO_D1_SOURCE_SSL=true zin migrate-to-d1
|
|
93
|
+
```
|
|
94
|
+
|
|
89
95
|
The command resolves values in this order: **CLI flag → environment variable → built-in default**.
|
|
90
96
|
|
|
91
97
|
#### Explicit flags
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/d1-migrator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Resumable database migration toolkit for moving data to Cloudflare D1 with ZinTrust.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@zintrust/db-d1": "^1.8.0",
|
|
44
|
-
"@zintrust/db-mysql": "^1.8.
|
|
44
|
+
"@zintrust/db-mysql": "^1.8.9",
|
|
45
45
|
"@zintrust/db-postgres": "^1.8.0",
|
|
46
46
|
"@zintrust/db-sqlite": "^1.8.0",
|
|
47
47
|
"@zintrust/db-sqlserver": "^1.8.0"
|