Changeset 3245
- Timestamp:
- 12/08/05 04:52:51 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/stable/activerecord/CHANGELOG
r3243 r3245 1 1 * SVN* 2 3 * SQLite: find database file when RAILS_ROOT is a symlink. #3116 [anna@wota.jp] 2 4 3 5 * Reloading an instance refreshes its aggregations as well as its associations. #3024 [François Beausolei] branches/stable/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb
r3177 r3245 56 56 # Sqlite build a database only in memory. 57 57 if Object.const_defined?(:RAILS_ROOT) && ':memory:' != config[:database] 58 config[:database] = File. expand_path(config[:database], RAILS_ROOT)58 config[:database] = File.join(RAILS_ROOT, config[:database]) 59 59 end 60 60 end