views:

83

answers:

1

Hi,

I've a Rails 2.1.2 App hosted on site 5.

This App is running since 2 years and I want to migrate the site on heroku.

No pb to install the site on heroku, but what about the data?!

What is the best strategy to export from site 5 (I've phpMyAdmin) and then import to heroku?

Thanks

+1  A: 

Export the data to your local system as SQL dump from phpMyAdmin, import it into your development database and then use the built-in Heroku db tools (based on Taps) to import into production:

heroku db:push
Toby Hede
thanks, here is the full doc http://docs.heroku.com/taps
denisjacquemin