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/citation.rb

8 lines
244 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Citation < ActiveRecord::Base
belongs_to :book, foreign_key: :book1_id, inverse_of: :citations, touch: true
2016-08-06 13:37:57 -04:00
belongs_to :reference_of, class_name: "Book", foreign_key: :book2_id
has_many :citations
end