Ruby on Rails ActiveRecord Migrations Running migrations in different environments

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Example

To run migrations in the test environment, run this shell command:

rake db:migrate RAILS_ENV=test
5.0

Starting in Rails 5.0, you can use rails instead of rake:

rails db:migrate RAILS_ENV=test


Got any Ruby on Rails Question?