diff options
author | Alexey Vakhov <vakhov@gmail.com> | 2012-05-04 12:54:20 +0400 |
---|---|---|
committer | Alexey Vakhov <vakhov@gmail.com> | 2012-05-22 08:59:25 +0400 |
commit | a060c41ef77cf3a0e4d236a70f3fef260ff9a261 (patch) | |
tree | 6f4d86f7bb016ec2221f6dd4795e6e7589992a0f /railties/lib | |
parent | 1447aca70f231f07eedee9572bd45da6a175262b (diff) | |
download | rails-a060c41ef77cf3a0e4d236a70f3fef260ff9a261.tar.gz rails-a060c41ef77cf3a0e4d236a70f3fef260ff9a261.tar.bz2 rails-a060c41ef77cf3a0e4d236a70f3fef260ff9a261.zip |
Use relative path to sqlite3 db in `rails db` command
Rails uses sqlit3 db file with a path relative to the rails root. It
allows to execute server not from rails root only. For example you
can fire `./spec/dummy/script/rails s` to start dummy application
server if you develop some engine gem.
Now the `rails db` command uses relative paths also and you can explore
your dummy db via `./spec/dummy/script/rails db` command.
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/commands/dbconsole.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/dbconsole.rb b/railties/lib/rails/commands/dbconsole.rb index aaba47117f..cdff9c6f86 100644 --- a/railties/lib/rails/commands/dbconsole.rb +++ b/railties/lib/rails/commands/dbconsole.rb @@ -96,7 +96,7 @@ module Rails args << "-#{options['mode']}" if options['mode'] args << "-header" if options['header'] - args << config['database'] + args << File.expand_path(config['database'], Rails.root) find_cmd_and_exec('sqlite3', *args) |