rake db:migrate is not working
1 min readSep 29, 2020
While setting up your rails app’s DB, you may got stuck in this kind of situation. I tried this and it fixed for me.
Just drop db and rebuild it so the correct DB structure could be built.
rake db:drop:all
rake db:create:all
rake db:migrate
Happy coding :)