From f4a9d7db1c6f5afbf66891cf1624f3d394802809 Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Thu, 20 Sep 2012 13:48:32 -0500 Subject: [PATCH] remove unnecessary entry and make minor edits to AR/CHANGELOG [ci skip] --- activerecord/CHANGELOG.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 606ff7eca03c1..ae304352f6d14 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,10 +1,5 @@ ## Rails 4.0.0 (unreleased) ## -* Rename `ActiveRecord::Model::Tag` to `ActiveRecord::Tag`. - Fix #7714. - - *Francesco Rodriguez* - * `ActiveModel::ForbiddenAttributesProtection` is included by default in Active Record models. Check the docs of `ActiveModel::ForbiddenAttributesProtection` for more details. @@ -15,7 +10,7 @@ `ActiveModel::MassAssignmentSecurity`, `protected_attributes` gem should be added to use `attr_accessible`/`attr_protected`. Mass assignment options has been removed from all the AR methods that - used it (ex. AR::Base.new, AR::Base.create, AR::Base#update_attributes, etc) + used it (ex. `AR::Base.new`, `AR::Base.create`, `AR::Base#update_attributes`, etc). *Guillermo Iguaran* @@ -96,7 +91,7 @@ create_table :table_with_arrays do |t| t.integer :int_array, array: true # integer[] - t.integer :int_array, array: true, :length => 2 + t.integer :int_array, array: true, length: 2 # smallint[] t.string :string_array, array: true, length: 30 # char varying(30)[]