mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
ba99e6d400
pair: @rebeldroid12
17 lines
765 B
Ruby
17 lines
765 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Face < ActiveRecord::Base
|
|
belongs_to :human, inverse_of: :face
|
|
belongs_to :autosave_human, class_name: "Human", foreign_key: :human_id, inverse_of: :autosave_face
|
|
belongs_to :super_human, polymorphic: true
|
|
belongs_to :polymorphic_human, polymorphic: true, inverse_of: :polymorphic_face
|
|
# Oracle identifier length is limited to 30 bytes or less, `polymorphic` renamed `poly`
|
|
belongs_to :poly_human_without_inverse, polymorphic: true
|
|
# These are "broken" inverse_of associations for the purposes of testing
|
|
belongs_to :puzzled_human, class_name: "Human", inverse_of: :puzzled_face
|
|
belongs_to :puzzled_polymorphic_human, polymorphic: true, inverse_of: :puzzled_polymorphic_face
|
|
|
|
validate do
|
|
human
|
|
end
|
|
end
|