rake db:migrate doesn't seem to work in production
Sometimes I forget about Google. The answer is this:
rake db:migrate RAILS_ENV=production
For me the answer above not works. I have to add bundle exec
to make it works.
bundle exec rails db:migrate RAILS_ENV=production