Sha256: 7d0f2950967c8a8f84fa8e16f94ded8447adc42d73075cd355b9190c4f87d3f3

Contents?: true

Size: 584 Bytes

Versions: 5

Compression:

Stored size: 584 Bytes

Contents

# 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
  belongs_to :zine, inverse_of: :interests
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ibm_db-5.5.0 test/models/interest.rb
ibm_db-5.4.1 test/models/interest.rb
ibm_db-5.4.0 test/models/interest.rb
ibm_db-5.3.2 test/models/interest.rb
ibm_db-5.3.1 test/models/interest.rb