From e33defcec84b6dbec958debc44b7c0fb20356a26 Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Sat, 20 Jul 2013 12:21:09 +0530 Subject: [PATCH] Removed information about creating database[ci skip] - As default index page is no longer in public folder, rails hits the welcome controller in railties for index action - If the database is not created or username and password are incorrect in database.yml, those errors are first shown before index action succeeds - welcome#index succeeds iff the database is created with correct details in database.yml - So this information about creating database is not required in the index template --- railties/lib/rails/templates/rails/welcome/index.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/railties/lib/rails/templates/rails/welcome/index.html.erb b/railties/lib/rails/templates/rails/welcome/index.html.erb index 4c4c80ecda..eb620caa00 100644 --- a/railties/lib/rails/templates/rails/welcome/index.html.erb +++ b/railties/lib/rails/templates/rails/welcome/index.html.erb @@ -232,8 +232,8 @@
  • -

    Create your database

    -

    Run rake db:create to create your database. If you're not using SQLite (the default), edit config/database.yml with your username and password.

    +

    Configure your database

    +

    If you're not using SQLite (the default), edit config/database.yml with your username and password.