Changeset 2992
- Timestamp:
- 11/13/05 02:50:42 (3 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/tasks/databases.rake (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r2990 r2992 1 1 *SVN* 2 2 3 * SQLite: the clone_structure_to_test Rake taskshould always use the test environment. #2846 [Rick Olson]3 * SQLite: the clone_structure_to_test and purge_test_database Rake tasks should always use the test environment. #2846 [Rick Olson] 4 4 5 5 * Make sure that legacy db tasks also reference :database for SQLite #2830 [kazuhiko@fdiary.net] trunk/railties/lib/tasks/databases.rake
r2990 r2992 108 108 `createdb #{enc_option} -T template0 -U "#{abcs["test"]["username"]}" #{abcs["test"]["database"]}` 109 109 when "sqlite","sqlite3" 110 dbfile = abcs[ RAILS_ENV]["database"] || abcs[RAILS_ENV]["dbfile"]110 dbfile = abcs["test"]["database"] || abcs["test"]["dbfile"] 111 111 File.delete(dbfile) if File.exist?(dbfile) 112 112 when "sqlserver"