aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-10-26 13:37:04 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-10-26 13:37:04 -0200
commitd200cb905ebb577b9663eb9f8baff5f1283445f8 (patch)
tree6587709dd2eae2ffaf2c64714a3961e14d8763fd /guides/source
parent7c7a225fbebd6dadfba4de9d7404a1d6eb16da70 (diff)
downloadrails-d200cb905ebb577b9663eb9f8baff5f1283445f8.tar.gz
rails-d200cb905ebb577b9663eb9f8baff5f1283445f8.tar.bz2
rails-d200cb905ebb577b9663eb9f8baff5f1283445f8.zip
Remove ActiveRecord::Model entry from 4.0 Release Notes [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/4_0_release_notes.md8
1 files changed, 0 insertions, 8 deletions
diff --git a/guides/source/4_0_release_notes.md b/guides/source/4_0_release_notes.md
index 6b3680aa2d..f24a981c6e 100644
--- a/guides/source/4_0_release_notes.md
+++ b/guides/source/4_0_release_notes.md
@@ -642,14 +642,6 @@ Active Record
* Connections *must* be closed at the end of a thread. If not, your connection pool can fill and an exception will be raised.
-* Added the `ActiveRecord::Model` module which can be included in a class as an alternative to inheriting from `ActiveRecord::Base`:
-
- ```ruby
- class Post
- include ActiveRecord::Model
- end
- ```
-
* PostgreSQL hstore records can be created.
* PostgreSQL hstore types are automatically deserialized from the database.