I have an sqlite3 database with data I want to load into my Heroku app's postgres db.
What's the best way to do this?
I was going to try exporting the records (it's a single table) to a yaml file and then uploading that file to heroku and initializing new records from it, but I ran into encoding issues. Those problems aside, is that a good approach? What's a better way of solving that problem?