aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/README
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-10-30 08:10:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-10-30 08:10:04 +0000
commitc21fdf31a52cbe507ff675815c29e5eef39e0bbb (patch)
treee782c60828c1632273e04aacfb197805c74b4b44 /activerecord/README
parentea44527afd55b568be3a07cb0d4991242474db03 (diff)
downloadrails-c21fdf31a52cbe507ff675815c29e5eef39e0bbb.tar.gz
rails-c21fdf31a52cbe507ff675815c29e5eef39e0bbb.tar.bz2
rails-c21fdf31a52cbe507ff675815c29e5eef39e0bbb.zip
Changed :dbfile to :database for SQLite adapter for consistency (old key still works as an alias) (closes #2644) [Dan Peterson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2825 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/README')
-rwxr-xr-xactiverecord/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/README b/activerecord/README
index 300ce8a495..bffa2ab65d 100755
--- a/activerecord/README
+++ b/activerecord/README
@@ -165,7 +165,7 @@ A short rundown of the major features:
* Database abstraction through simple adapters (~100 lines) with a shared connector
- ActiveRecord::Base.establish_connection(:adapter => "sqlite", :dbfile => "dbfile")
+ ActiveRecord::Base.establish_connection(:adapter => "sqlite", :database => "dbfile")
ActiveRecord::Base.establish_connection(
:adapter => "mysql",