I have a RAILS 3.x application developed locally using MySQL which has data which needs migrating. Now I want to deploy to Heroku, which uses Postgresql and also transfer the data.
The issue is in dealing with the columns with NULL data which the import process doesn't like.
I've attempted using a number of different strategies such as
- yaml_db gem - fails to import at all
- rails-backup-migrate gem - doesn't like the encoded NULL element;
- taps - fails on import without much detail
Has anyone tried any other strategies, gems or methods? Should I just start over with a Postgresl local DB instead ?
thanks in advance grant
heroku db:push
or is that where taps fails without much detail? – mu is too short Nov 1 '11 at 23:20