提交 f60e3aa1 编写于 作者: D David Heinemeier Hansson

Fixed that local database creation should consider 127.0.0.1 local (closes #9026) [parcelbrat]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8388 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 519c5c75
*SVN*
* Fixed that local database creation should consider 127.0.0.1 local #9026 [parcelbrat]
* Fixed that functional tests generated for scaffolds should use fixture calls instead of hard-coded IDs #10435 [boone]
* Added db:migrate:redo and db:migrate:reset for rerunning existing migrations #10431, #10432 [matt]
......
......@@ -16,7 +16,7 @@ namespace :db do
# <<: *defaults
next unless config['database']
# Only connect to local databases
if config['host'] == 'localhost' || config['host'].blank?
if %w( 127.0.0.1 localhost ).include?(config['host']) || config['host'].blank?
create_database(config)
else
p "This task only creates local databases. #{config['database']} is on a remote host."
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册