From 0621cb0240620d219369b128c71f786a672f282d Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Mon, 11 Jun 2018 16:13:46 +0200 Subject: [PATCH] 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 --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 80bfca3ee..8cbf87aef 100644 --- a/README.md +++ b/README.md @@ -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 l’authentification