README: remove the explicit migration for test env

Since Rails 4.1, applications using `maintain_test_schema` do not need
to run an explicit migration in the test env.

See https://relishapp.com/rspec/rspec-rails/docs/upgrade
This commit is contained in:
Pierre de La Morinerie 2018-06-11 16:13:46 +02:00
parent 03f82ad0f0
commit 0621cb0240

View file

@ -48,9 +48,8 @@ Afin de générer la BDD de l'application, il est nécessaire d'exécuter les co
# Create and load the schema for both databases
bin/rails db:create db:schema:load
# Migrate the development database and then the test database
bin/rails db:migrate
bin/rails db:migrate RAILS_ENV=test
# Migrate the development database and the test database
rails db:migrate
## Bouchonnage de lauthentification