1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/models/interest.rb

17 lines
584 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Interest < ActiveRecord::Base
belongs_to :human, inverse_of: :interests
belongs_to :human_with_callbacks,
class_name: "Human",
foreign_key: :human_id,
inverse_of: :interests_with_callbacks
belongs_to :polymorphic_human, polymorphic: true, inverse_of: :polymorphic_interests
belongs_to :polymorphic_human_with_callbacks,
foreign_key: :polymorphic_human_id,
foreign_type: :polymorphic_human_type,
polymorphic: true,
inverse_of: :polymorphic_interests_with_callbacks
2016-08-06 13:37:57 -04:00
belongs_to :zine, inverse_of: :interests
end