rails scope model without relation

300 Views Asked by At

I have such model

class Ads::Posting < ActiveRecord:Base
  has_one :child, class_name: 'Ads::Posting', foreign_key: :posting_id
  belongs_to :parent, class_name: 'Ads::Posting', foreign_key: :posting_id
end

I need to write scope which gets all postings without child. Any ideas how to do that?

2

There are 2 best solutions below

1
On

that model doesnt make sense!

a children is automatically a parent.

what exactly do you want to make? a tree?

then you need to add to migration

t.integer :parent_id, null: false

and in your model

has_one :child, class_name: 'Ads::Posting', foreign_key: :parent_id

for making it deeper, have a look at

https://github.com/stefankroes/ancestry

maybe thats helping you.

0
On

I believe you can do this using a LEFT JOIN and a restriction on the where clause.

scope :my_scope, 
  joins("LEFT JOIN postings ON postings.ad_id = ads.id").where("postings.id IS NULL")