Hi how to build a named_scope which will be common for all models.
|
|
I do that by putting this code in lib/has_common_named_scopes.rb:
and then include the module in each model where I need them:
I'd recommend that you use base.table_name to qualify the table when referring to columns in these named scopes like I do in the example. Otherwise you run into problems with ambiguous references when you combine these named scopes with other scopes that join in other tables. |
||
|
|
|
|
There's also Thoughtbot's Pacecar, which adds a bunch of very common named scopes to every model. It might come with what you're looking for. If you need something custom, though, Casper Fabricius has the right idea. |
||
|
|
|
|
Thanks for your suggestions |
||
|
|
