10 lines
153 B
Ruby
10 lines
153 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Relationship < ApplicationRecord
|
||
|
################
|
||
|
# Associations #
|
||
|
################
|
||
|
|
||
|
belongs_to :person
|
||
|
end
|