I created two applications that were essentially identical on heroku. They started off different because I was testing uploading to heroku and having some challenges making the adjustments.
But now things seem to be working, but both have data that I would like to consolidate. Since they run off the same git repository, the code is the same, as are the migrations.
Seems like I need to bring it down locally and merge, but not exactly clear how to do that. Did some searches on Google and nothing clear.
I’d like some help in terms of a step-by-step, I don’t have a clear process.
1) I have two apps on heroku where I have the databases. They have the same schemas;
2) I don’t need to know where the data came from: I just need it all to reside in a single database
3) I would like to be able to do it with specific sql commands, versus manually opening (not sure how I would do that) and then munging since there are about 10 different interrelated tables.
Thanks!
Going to close this — decided to just manually select the right data and re-enter it so I can do some error checking — a pain but this approach doesn’t seem to have an easy answer. Note to self: keep all production data in production versus test-driving.