aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-09-20 13:48:32 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-09-20 13:48:32 -0500
commitf4a9d7db1c6f5afbf66891cf1624f3d394802809 (patch)
treedc81888cb0df85723840d2746d674f3d7c86cbc9 /activerecord/CHANGELOG.md
parent0a7b1319d35371d4ccf8ed3217f4c57c81225dd7 (diff)
downloadrails-f4a9d7db1c6f5afbf66891cf1624f3d394802809.tar.gz
rails-f4a9d7db1c6f5afbf66891cf1624f3d394802809.tar.bz2
rails-f4a9d7db1c6f5afbf66891cf1624f3d394802809.zip
remove unnecessary entry and make minor edits to AR/CHANGELOG [ci skip]
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md9
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)[]