From 31774452e813ee0f8cc0344d814b9389b426cf75 Mon Sep 17 00:00:00 2001 From: Stefan Hartmann Date: Tue, 25 Apr 2017 16:19:20 -0400 Subject: [PATCH] update rake reference to rails --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5232fc01..d6071186 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ $ rails generate devise MODEL Next, check the MODEL for any additional configuration options you might want to add, such as confirmable or lockable. If you add an option, be sure to inspect the migration file (created by the generator if your ORM supports them) and uncomment the appropriate section. For example, if you add the confirmable option in the model, you'll need to uncomment the Confirmable section in the migration. -Then run `rake db:migrate` +Then run `rails db:migrate` You should restart your application after changing Devise's configuration options. Otherwise, you will run into strange errors, for example, users being unable to login and route helpers being undefined.