diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-10-29 01:28:02 -0700 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-10-29 01:28:02 -0700 |
commit | cd3a8fecf1abb2333ffd0bcbd687ed91280a18a8 (patch) | |
tree | 3e5b9f3800a002ed3f4a53292389498624eb8c60 /activerecord | |
parent | ab177d8cbe3ed208334ce9f550aa7afff65ba334 (diff) | |
parent | 2dc86ead1de8fd523ec40db79e92318062616967 (diff) | |
download | rails-cd3a8fecf1abb2333ffd0bcbd687ed91280a18a8.tar.gz rails-cd3a8fecf1abb2333ffd0bcbd687ed91280a18a8.tar.bz2 rails-cd3a8fecf1abb2333ffd0bcbd687ed91280a18a8.zip |
Merge pull request #10664 from aderyabin/docpatch
Fix doc in Postgres database creation [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb | 2 |
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 3fce8de1ba..5dc70a5ad1 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>). # |