gimenete / dbdiff

Compares two postgresql or mysql databases and prints SQL commands to modify the first one in order to match the second one
MIT License
131 stars 36 forks source link

added mysql port option #15

Closed spencerdcarlson closed 7 years ago

spencerdcarlson commented 7 years ago

Tested with both:

var conString1 = 'mysql://root:@localhost:4217/db1' var conSettings2 = { dialect: 'mysql', username: 'root', password: '', port: '4217', database: 'db1', host: 'localhost' }