Skip to content

Dimkarodinz/mysql_to_pg_dump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MysqlToPgDump

This gem allows pull content from mysql db (on the remote server) and load it into your local postgres database. Technically, dump is not using - but result is almost the same.

Usage

Copy content of remote mysql db to tmp/db_server_data as .csv files.

$ rake db:pull your_server@123.4.5.6

Replace local postgres db content to pulled.

$ rake db:pull:load
 # or
$ RAILS_ENV=staging rake db:pull:load

Delete all files from tmp/db_server_data.

$ rake db:pull:clean

Pull remote mysql db data and then loads it to local postgres db. Same as db:pull and db:pull:load

$ rake db:pull:reload

Pull remote mysql db data, load it to postgres db and clean junk from /tmp/db_server_data. Same as db:pull, db:pull:load and db:pull:clean.

$ rake db:pull:force

Installation

Add this line to your application's Gemfile:

gem 'mysql_to_pg_dump'

And then execute:

$ bundle

Or install it yourself as:

$ gem install mysql_to_pg_dump

TODO

  • ssh -i key.pub username@server supporting

License

The gem is available as open source under the terms of the MIT License.

About

Loads mysql db data from the remote server to local postgres db

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages