diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-09-20 12:03:00 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-09-20 12:03:00 -0700 |
commit | 2ecfed2f5a750f7fb1474b8c9e72a77200f4b808 (patch) | |
tree | dc81888cb0df85723840d2746d674f3d7c86cbc9 /activerecord | |
parent | 0a7b1319d35371d4ccf8ed3217f4c57c81225dd7 (diff) | |
parent | f4a9d7db1c6f5afbf66891cf1624f3d394802809 (diff) | |
download | rails-2ecfed2f5a750f7fb1474b8c9e72a77200f4b808.tar.gz rails-2ecfed2f5a750f7fb1474b8c9e72a77200f4b808.tar.bz2 rails-2ecfed2f5a750f7fb1474b8c9e72a77200f4b808.zip |
Merge pull request #7721 from frodsan/ar_changelog_improvement
remove unnecessary entry and make minor edits to AR/CHANGELOG [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 606ff7eca0..ae304352f6 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)[] |