我有一個模型使用單個表繼承和關注,應該在任何模型上工作。 考慮這個例子: class Car
acts_as_categorizable
end
class Suv < Car; end
module Categorizable
def after_safe
siblings = this.class.where(category: self.categor
我有3種型號: class UserLanguage < ActiveRecord::Base
belongs_to :user
belongs_to :language
end
class Language < ActiveRecord::Base
has_many :user_languages
has_many :users, :through
我的問題很相似,這個問題:Want to find records with no associated records in Rails 3 但與一捻。讓我們用他們的例子,並添加我的問題: class Person
has_many :friends
end
class Friend
belongs_to :person
attr_accessor :type
在Rails應用4,我有相關的模型申請人和商標,後者使用搜索Searchkick: class Applicant < ActiveRecord::Base
has_many :trademarks
end
class Trademark < ActiveRecord::Base
belongs_to :applicant
searchkick
end
我