diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-18 23:46:33 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-11-18 23:52:39 -0200 |
commit | 53aefdec91e4e26b2fbd1a8dc39817ecabfe6125 (patch) | |
tree | 07a015ccbf1f0a6128acadea23ab9cc5e3947db1 /railties/test/fixtures | |
parent | 0cc9c1255d8bc5a2f7d4abb8553e9eefabf3deac (diff) | |
download | rails-53aefdec91e4e26b2fbd1a8dc39817ecabfe6125.tar.gz rails-53aefdec91e4e26b2fbd1a8dc39817ecabfe6125.tar.bz2 rails-53aefdec91e4e26b2fbd1a8dc39817ecabfe6125.zip |
Fix rails db command with sqlite3 database
When using sqlite3 it was attempting to find the database file based on
Rails.root, the problem is that Rails.root is not always present because
we try to first manually load "config/database.yml" instead of loading
the entire app, to make "rails db" faster.
This means that when we're in the root path of the app, calling "rails db"
won't allow us to use Rails.root, making the command fail for sqlite3
with the error:
./rails/commands/dbconsole.rb:62:in `start':
undefined method `root' for Rails:Module (NoMethodError)
The fix is to simply not pass any dir string to File.expand_path, which
will make it use the current directory of the process as base, or the
root path of the app, which is what we want.
When we are in any other subdirectory, calling "rails db" should work
just fine, because "config/database.yml" won't be found, thus "rails db"
will fallback to loading the app, making Rails.root available.
Closes #8257.
Diffstat (limited to 'railties/test/fixtures')
0 files changed, 0 insertions, 0 deletions