Stop and restart the database. Then try again rails db:migrate.
If you are using posgresql installed using homebrew on Mac OSX, the following stops / restarts the database:
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
pg_ctl -D /usr/local/var/postgres stop -s -m fast
source
share