I am trying to push my local Postgres db to my Heroku application and following the Heroku manual I did heroku db:push, but I got the following error:
leonsas@leonsas-VirtualBox:~$ heroku db:push
! Taps Load Error: cannot load such file
! You may need to install or update the taps gem to use db commands.
! On most systems this will be:
!
! sudo gem install taps
I already tried sudo gem install taps, sudo gem install sqlite3but I can't get it to work. Any ideas why it is trying to load sqlite3 db when I use postgres?
source
share