You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bundle exec rake db:migrate and bin/rake db:migrate are functionally equivalent, so either is acceptable. I prefer bin/<command> <argument(s)> because it's shorter. But, that cannot be used if binstubs don't exist (they do in our rails an ruby templates).
right now we are running commands as
rake db:migrate
Should we be using
bundle exec rake db:migrate
orbundle exec bin/rake db:migrate
?The text was updated successfully, but these errors were encountered: