From 508834c5991be49f4d8855e76b3d59165bb3d920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Thu, 14 Jun 2012 19:21:58 -0300 Subject: [PATCH] Add CHANGELOG entry to the uuid datatype support to PostgreSQL adpter --- activerecord/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 4ea1efdcbd..cfb1e7071c 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,5 +1,7 @@ ## Rails 4.0.0 (unreleased) ## +* Add uuid datatype support to PostgreSQL adapter. *Konstantin Shabanov* + * `update_attribute` has been removed. Use `update_column` if you want to bypass mass-assignment protection, validations, callbacks, and touching of updated_at. Otherwise please use `update_attributes`.