aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2015-07-07 12:06:10 +0200
committerRobin Dupret <robin.dupret@gmail.com>2015-07-07 12:06:10 +0200
commitcf579b48a306ff7b1f9266caece283a96d449684 (patch)
tree4dddd1b359fcf1ce943359480cba3c0221483c27 /activerecord
parentc66335d5bb6e5b3d2f6dc42a192e803c7ded5f1c (diff)
parent3d5580fa858aba3bd69152a70d6a8d7923a4816e (diff)
downloadrails-cf579b48a306ff7b1f9266caece283a96d449684.tar.gz
rails-cf579b48a306ff7b1f9266caece283a96d449684.tar.bz2
rails-cf579b48a306ff7b1f9266caece283a96d449684.zip
Merge pull request #20794 from vredniy/patch-1
Update CHANGELOG.md [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6054b08f33..e4a6734009 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -21,7 +21,7 @@
Example:
change_column_default :posts, :status, from: nil, to: "draft"
- change_column_default :users, authorized, from: true, to: false
+ change_column_default :users, :authorized, from: true, to: false
*Prem Sichanugrist*