Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm attempting to migrate my rails application from postgresql to mySQL so as to view the data in one place within xampp in PHPmyadmin. The reason is the fact that I need to access the data that is located within the MySQL database from my rails app which is in postgresql.

As of now most questions I found aim to create a new application within mySQL with rails but I need to migrate all of the data my current rails application compatible and use MySQL.

Is there a proper process and simple procedure that allows for this migration from postgresql to mySQL?

Note: MySQL is within xampp

share|improve this question

1 Answer 1

this post

got the answer to your question.

It's very easy, just paste your postgres dump in this website and you'll get the same dump converted in mysql, ready for you to be imported.

Then you will just need to properly configure your database.yml and you're set.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.