Skip to content

Commit 62fb620

Browse files
committed
Merge branch 'release/v5-1-0'
2 parents 7c0e016 + 6c5797d commit 62fb620

35 files changed

+879
-505
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ from MySQL to PostgreSQL as easy and smooth as possible.</p>
8787
<b>Note:</b> "logs_directory" will be created during script execution.</p>
8888

8989
<h3>VERSION</h3>
90-
<p>Current version is 5.0.1<br />
90+
<p>Current version is 5.1.0<br />
9191
(major version . improvements . bug fixes)</p>
9292

9393
<h3>KNOWN ISSUES</h3>

config/config.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,24 @@
77
"source_description" : [
88
"Connection parameters to your MySQL database",
99
"Please ensure, that you have defined all parameters properly.",
10-
"Ensure, that details like 'charset' are included (if necessary)."
10+
"Ensure, that details like 'charset' are included (if necessary).",
11+
"Notice, any parameter, acceptable by the node mysql module can be placed here."
1112
],
1213
"source" : {
13-
"host" : "localhost",
14-
"port" : 3306,
15-
"database" : "test_db",
16-
"charset" : "utf8mb4",
17-
"user" : "root",
18-
"password" : "0123456789"
14+
"host" : "localhost",
15+
"port" : 3306,
16+
"database" : "test_db",
17+
"charset" : "utf8mb4",
18+
"supportBigNumbers": true,
19+
"user" : "root",
20+
"password" : "0123456789"
1921
},
2022

2123
"target_description" : [
2224
"Connection parameters to your PostgreSQL database",
2325
"Please ensure, that you have defined all parameters properly.",
24-
"Ensure, that details like 'charset' are included (if necessary)."
26+
"Ensure, that details like 'charset' are included (if necessary).",
27+
"Notice, any parameter, acceptable by the node pg module can be placed here."
2528
],
2629
"target" : {
2730
"host" : "localhost",

config/test_config.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,24 @@
66
"source_description" : [
77
"Connection parameters to your MySQL database",
88
"Please ensure, that you have defined all parameters properly.",
9-
"Ensure, that details like 'charset' are included (if necessary)."
9+
"Ensure, that details like 'charset' are included (if necessary).",
10+
"Notice, any parameter, acceptable by the node mysql module can be placed here."
1011
],
1112
"source" : {
12-
"host" : "localhost",
13-
"port" : 3306,
14-
"charset" : "utf8mb4",
15-
"database" : "nmig_test_db",
16-
"user" : "root",
17-
"password" : "0123456789"
13+
"host" : "localhost",
14+
"port" : 3306,
15+
"charset" : "utf8mb4",
16+
"supportBigNumbers": true,
17+
"database" : "nmig_test_db",
18+
"user" : "root",
19+
"password" : "0123456789"
1820
},
1921

2022
"target_description" : [
2123
"Connection parameters to your PostgreSQL database",
2224
"Please ensure, that you have defined all parameters properly.",
23-
"Ensure, that details like 'charset' are included (if necessary). nmig_test_db"
25+
"Ensure, that details like 'charset' are included (if necessary). nmig_test_db",
26+
"Notice, any parameter, acceptable by the node pg module can be placed here."
2427
],
2528
"target" : {
2629
"host" : "localhost",

0 commit comments

Comments
 (0)