Is there any Ruby script for converting a PostgreSQL database to a MySQL database? I have searched many sites to no avail.
|
To be honest these migrations can be tricky. I don't know that there are any good tools to do it. Also note that this can be a major pain, and you end up giving up on a lot of nice features that PostgreSQL has for agile development (like transactional DDL). This being said, here's the way to go about it:
On the whole these dbs are very different. I would not expect that the migration will be easy. |
|||
|