aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorJohannes Barre <igel@igels.net>2012-05-10 13:47:50 +0200
committerJohannes Barre <igel@igels.net>2012-05-17 17:52:17 +0200
commita8b370f5c2fed87001e363d18ce60a47c1748885 (patch)
tree0b7d8182025899135edffdae6de8b734b96c0d7a /activerecord/CHANGELOG.md
parent85ac14309c7b6faf846072fc012e14a0f31694e9 (diff)
downloadrails-a8b370f5c2fed87001e363d18ce60a47c1748885.tar.gz
rails-a8b370f5c2fed87001e363d18ce60a47c1748885.tar.bz2
rails-a8b370f5c2fed87001e363d18ce60a47c1748885.zip
Don't destroy readonly models
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 198b054f99..11fd0e7047 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* It's not possible anymore to destroy a model marked as read only.
+
+ *Johannes Barre*
+
+
* Added ability to ActiveRecord::Relation#from to accept other ActiveRecord::Relation objects
Record.from(subquery)