From 2ef1de02ed2e19638aebdbca1aea209a7591b5fe Mon Sep 17 00:00:00 2001 From: Mauro George Date: Thu, 2 Jul 2015 18:58:19 -0300 Subject: Add a note about default_scope and create records [ci skip] --- guides/source/active_record_querying.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'guides/source') diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index e3cfabb327..4b4d70d3ce 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -1266,6 +1266,18 @@ class Client < ActiveRecord::Base end ``` +NOTE: The `default_scope` is also applied while creating/building a record. +It is not applied while updating a record. E.g.: + +```ruby +class Client < ActiveRecord::Base + default_scope { where(active: true) } +end + +Client.new # => # +Client.unscoped.new # => # +``` + ### Merging of scopes Just like `where` clauses scopes are merged using `AND` conditions. -- cgit v1.2.3