diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-06 04:20:08 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-06 04:20:08 +0000 |
commit | 31702951365c26f930a5f39698cb51309e111e98 (patch) | |
tree | 84bf582fdcaeca974bbf5331e5e059aa92ba89b4 /railties | |
parent | c9901176be597d593791d05fa9b6601055aa0fc2 (diff) | |
download | rails-31702951365c26f930a5f39698cb51309e111e98.tar.gz rails-31702951365c26f930a5f39698cb51309e111e98.tar.bz2 rails-31702951365c26f930a5f39698cb51309e111e98.zip |
Added warning about setting the test database to the same as production or development #1619 [court3nay]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1720 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/configs/database.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/railties/configs/database.yml b/railties/configs/database.yml index 0f9a7eb20e..c9c8316dcb 100644 --- a/railties/configs/database.yml +++ b/railties/configs/database.yml @@ -5,6 +5,9 @@ development: username: root password: +# Warning: The database defined as 'test' will be erased and +# re-generated from your development database when you run 'rake'. +# Do not set this db to the same as development or production. test: adapter: mysql database: rails_test |