class Game < Event has_many :statistics, :dependent => :destroy ... end class Statistic < ActiveRecord::Base belongs_to :game end
Я хочу создать именованную область, которая возвращает только игры без статистики.
Спасибо
Попробуйте
named_scope :no_statistics, :include => :statistics, :conditions => ['statistics.id IS NULL']