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?
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
and in your model
for making it deeper, have a look at
maybe thats helping you.