Tagged Questions

default order or where clause for all queries

learn more… | top users | synonyms

11
votes
2answers
2k views

How do I set a default sort order for a rails model?

I would like to specify a default sort order in my model. So that when I preform a find(:all, ...) without an :order parameter it defaults to the order specified in the model, but specifying an ...
11
votes
4answers
3k views

Overriding default_scope in Rails

In my Post.rb model, I have default_scope :conditions => {:deleted => 'false'} But if I try to run Post.find(:all, :conditions => "deleted='false'"), it won't return anything. It's as if ...
9
votes
2answers
9k views

default_scope in rails 3

I know named_scope has been changed to scope in rails 3. How do I perform default_scope in rails 3, I've had a good google but found nothing for defaults scopes.
5
votes
0answers
404 views

ActiveRecord STI: How can I break out of the parent class' default scope

On Rails 3.1 RC6, given class Animal < ActiveRecord::Base default_scope where(legs: 4) end The following does not work as expected: class Man < Animal default_scope unscoped.where(legs: ...
4
votes
1answer
3k views

rails3 default_scope, and default column value in migration

class CreateCrews < ActiveRecord::Migration def self.up create_table :crews do |t| t.string :title t.text :description t.boolean :adult t.boolean :private ...
3
votes
1answer
247 views

default_scope breaks (update|delete|destroy)_all in some cases

I believe this is a bug in Rails 3. I am hoping someone here can steer me in the correct direction. The code posted below, is purely for illustration of this problem. Hopefully this does not confuse ...
2
votes
2answers
74 views

Rails 3.1.3 unscoped scope

I've seen a lot of posts regarding this, but none seem to solve my problem. I have a default_scope on a model like so: default_scope where(:is_active => true).order('LOWER(table.name)'); I have ...
2
votes
2answers
414 views

Default_scope on a join table

I've got a model setup like the following: class User has_many :items has_many :words, :through => :items end class Item belongs_to :user belongs_to :word default_scope where(:active ...
2
votes
2answers
815 views

default_scope and associations

Suppose I have a Post model, and a Comment model. Using a common pattern, Post has_many Comments. If Comment has a default_scope set: default_scope where("deleted_at IS NULL") How do I easily ...
1
vote
1answer
61 views

Best way to scope a has_many relationship when find()'ing the parent object

I'm struggling a bit with understanding default scopes and named scopes with my quiz application. I'm on rails 3.0. I have a Question model that has_many UserResponse models. Question has the ...
1
vote
1answer
285 views

Rails 3 default scope, scope with overrride

I have a situation where the behavior of an existing app is changing and it's causing me a major headache. My app has Photos. Photos have a status: "batch", "queue", or "complete". All the existing ...
1
vote
1answer
355 views

How can i have an rspec test for my default scope

my model has default_scope(:order => 'created_at' ) my tests (rspec, factory girl, shoulda, etc.) are: require 'spec/spec_helper.rb' describe CatMembership do context "is valid" do subject { ...
1
vote
1answer
93 views

Why is my ORDER BY clause being duplicated with this ActiveRecord scope?

I have this model: class Coupon < ActiveRecord::Base default_scope order(:created_at) scope :inactive, where(:active => false) end I'm seeing some weird duplication of the ORDER BY ...
1
vote
1answer
201 views

Date condition in default_scope for a Model

I want to ensure that only Movies with a watched date are brought back and ordered by that value in ascending order. I think I'm fairly close with the following: default_scope :conditions => { ...
1
vote
2answers
147 views

Is there a way to break out of the default_scope when using has_many?

I have a tree-like model where in all situations but one, I want to scope the results to only return the roots. class Licence < ActiveRecord::Base default_scope :conditions => { ...
0
votes
1answer
118 views

% not working as wildcard for ActiveRecord default_scope query?

I am using ActiveRecord in my Rails project and one of my classes looks like this: class ServerModel < ActiveRecord::Base set_table_name "S985_947_MODELS_VW" set_primary_key "model_barcode" ...
0
votes
1answer
33 views

Is there a more database agnostic way to write this default scope in Rails 3?

I have the following default scope defined in one of my models default_scope order("IF(format = #{FORMATS[:wide]}, 1, 0) DESC, created_at DESC, name ASC") It worked fine on my dev machine where I'm ...
0
votes
1answer
60 views

How do you put multiple default scopes on on a model?

I was wondering how do you have multiple default scopes (ordering) on a model for example I have a comments model that needs ordering by both date and approved: default_scope :order => 'approved ...
0
votes
0answers
85 views

Most common way to always require a join in default scope with Rails?

I have a model whose table always relies on data in another table (see below for definitions). When records are retrieved ia ActiveRecord from that model, I want to always join to the second table and ...
0
votes
2answers
546 views

Best way to override named_scope for has_many associations in Rails?

Note: I'm using Rails 2.3.8, not 3. I have a Photo model with a default_scope: default_scope :conditions => ["published = ?", true], :order => :position Calling photo_album.photos returns ...
0
votes
2answers
1k views

Problem with default_scope in Rails 3? NoMethodError

I am experiencing a weird bug after adding this to my Alternative-model: default_scope order(:number) On the first page refresh, everything works fine. On subsequent refreshes, I get NoMethodError ...
0
votes
2answers
307 views

Setting default_scope according to some criteria

I'm trying to set default scope according to some criteria determined by ana ActionController before_filter. In controller: before_filter :authorize ... def authorize if some_condition ...
0
votes
3answers
142 views

default scope in older rails versions

afternoon all. i am working on a project written on rails 2.1 in newer versions we can use a rather cool method to create a default scope like so default_scope :order => 'title ASC' how can ...
0
votes
1answer
2k views

default_scope with :joins and :select

I tried to define a default_scope in the following way: default_scope :joins => :product, :select => "catalog_products.*, products.*" What I'm getting from Rails though is this: SELECT ...