aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAndrey Deryabin <deriabin@gmail.com>2013-06-25 22:50:44 +0200
committerAndrey Deryabin <deriabin@gmail.com>2013-06-25 22:50:44 +0200
commit2dc86ead1de8fd523ec40db79e92318062616967 (patch)
tree008d1531446aeb0a87a7819a61ef32d57461b9b3 /activerecord
parent677b64fcd527529390e232ceedf8fa8bfac224e2 (diff)
downloadrails-2dc86ead1de8fd523ec40db79e92318062616967.tar.gz
rails-2dc86ead1de8fd523ec40db79e92318062616967.tar.bz2
rails-2dc86ead1de8fd523ec40db79e92318062616967.zip
Fix doc in Postgres database creation
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
index a651b6c32e..7b8c788d24 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
@@ -46,7 +46,7 @@ module ActiveRecord
end
# Create a new PostgreSQL database. Options include <tt>:owner</tt>, <tt>:template</tt>,
- # <tt>:encoding</tt>, <tt>:collation</tt>, <tt>:ctype</tt>,
+ # <tt>:encoding</tt> (defaults to utf8), <tt>:collation</tt>, <tt>:ctype</tt>,
# <tt>:tablespace</tt>, and <tt>:connection_limit</tt> (note that MySQL uses
# <tt>:charset</tt> while PostgreSQL uses <tt>:encoding</tt>).
#