From a92814b001d93f8ef533e692011bbc8824841bf7 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Sun, 7 Apr 2013 13:56:11 -0300 Subject: Minor AR changelog improvements [ci skip] --- activerecord/CHANGELOG.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'activerecord') diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 5891de9841..58f6153e96 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,7 +1,6 @@ ## Rails 4.0.0 (unreleased) ## -* `#default_scopes?` is deprecated. Instead, do something like - `Post.default_scopes.empty?`. +* `default_scopes?` is deprecated. Check for `default_scopes.empty?` instead. *Agis Anastasopoulos* @@ -1856,13 +1855,13 @@ add_index(:accounts, :code, where: 'active') - Generates + generates CREATE INDEX index_accounts_on_code ON accounts(code) WHERE active *Marcelo Silveira* -* Implemented ActiveRecord::Relation#none method. +* Implemented `ActiveRecord::Relation#none` method. The `none` method returns a chainable relation with zero records (an instance of the NullRelation class). -- cgit v1.2.3