I have a RAILS 3.x application developed locally using MySQL that has data that requires migration. Now I want to deploy to Heroku, which uses Postgresql, and also transfers data.
The problem is the processing of columns with NULL data that the import process is not possible.
I tried to use several different strategies, such as
- yaml_db gem - not imported at all
- rails-backup-migrate gem - do not like the NULL encoded element;
- taps - import failure without special details
Has anyone tried any other strategies, gems or methods? Should I just start from the local Postgresl database?
thanks in advance grant
Grant saayer
source share