aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-23 20:54:11 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-23 20:54:11 +0530
commitd5433945be25f7becacc6b2845c09f178ef75669 (patch)
tree360a0b907901f4339d02747913ea2017884cf927 /activerecord
parent14ce0c6eea688761f0477aeab14b09f45bbdd244 (diff)
downloadrails-d5433945be25f7becacc6b2845c09f178ef75669.tar.gz
rails-d5433945be25f7becacc6b2845c09f178ef75669.tar.bz2
rails-d5433945be25f7becacc6b2845c09f178ef75669.zip
Spelling 'PostgreSQL' correctly
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 7b86cd2e70..34716caddf 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -280,7 +280,7 @@
*John Wang*
-* Postgresql timestamp with time zone (timestamptz) datatype now returns a
+* PostgreSQL timestamp with time zone (timestamptz) datatype now returns a
ActiveSupport::TimeWithZone instance instead of a string
*Troy Kruthoff*
@@ -533,7 +533,7 @@
*Dylan Smith*
* Schema dumper supports dumping the enabled database extensions to `schema.rb`
- (currently only supported by Postgresql).
+ (currently only supported by PostgreSQL).
*Justin George*
@@ -697,7 +697,7 @@
*Yves Senn*
-* Add ability for postgresql adapter to disable user triggers in `disable_referential_integrity`.
+* Add ability for PostgreSQL adapter to disable user triggers in `disable_referential_integrity`.
Fixes #5523.
*Gary S. Weaver*
@@ -821,14 +821,14 @@
*Carlos Antonio da Silva*
-* Fix postgresql adapter to handle BC timestamps correctly
+* Fix PostgreSQL adapter to handle BC timestamps correctly
HistoryEvent.create!(name: "something", occured_at: Date.new(0) - 5.years)
*Bogdan Gusiev*
-* When running migrations on Postgresql, the `:limit` option for `binary` and `text` columns is silently dropped.
- Previously, these migrations caused sql exceptions, because Postgresql doesn't support limits on these types.
+* When running migrations on PostgreSQL, the `:limit` option for `binary` and `text` columns is silently dropped.
+ Previously, these migrations caused sql exceptions, because PostgreSQL doesn't support limits on these types.
*Victor Costan*
@@ -1460,7 +1460,7 @@
*Egor Lynko*
-* Added support for specifying the precision of a timestamp in the postgresql
+* Added support for specifying the precision of a timestamp in the PostgreSQL
adapter. So, instead of having to incorrectly specify the precision using the
`:limit` option, you may use `:precision`, as intended. For example, in a migration: