-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/add-index-types-mapping' into develop
- Loading branch information
Showing
11 changed files
with
333 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"README" : [ | ||
"This JSON document represents a correct index-types map between MySQL and PostgreSQL.", | ||
"If you wish to customize (not recommended) this map - you can.", | ||
"Map explanation:", | ||
"Each key represents a MySQL index-type, and each value represents corresponding PostgreSQL index-type." | ||
], | ||
|
||
"BTREE": "BTREE", | ||
|
||
"HASH": "HASH", | ||
|
||
"SPATIAL": "GIST", | ||
|
||
"FULLTEXT": "GIN" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "nmig", | ||
"version": "5.4.0", | ||
"version": "5.5.0", | ||
"description": "The database migration app", | ||
"author": "Anatoly Khaytovich<[email protected]>", | ||
"license": "GPL-3.0", | ||
|
@@ -12,18 +12,18 @@ | |
"node": ">=10.0.0" | ||
}, | ||
"dependencies": { | ||
"json2csv": "^5.0.1", | ||
"json2csv": "^5.0.3", | ||
"mysql": "^2.18.1", | ||
"pg": "^8.3.3", | ||
"pg-copy-streams": "^2.2.2", | ||
"pg": "^8.4.2", | ||
"pg-copy-streams": "^5.1.1", | ||
"@types/mysql": "^2.15.15", | ||
"@types/node": "^14.10.1", | ||
"@types/pg": "^7.14.4" | ||
"@types/node": "^14.14.5", | ||
"@types/pg": "^7.14.5" | ||
}, | ||
"devDependencies": { | ||
"@types/tape": "^4.13.0", | ||
"tape": "^5.0.1", | ||
"typescript": "^4.0.2" | ||
"typescript": "^4.0.5" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.