retrospring/app/models/relationship.rb
2022-01-23 16:48:53 +01:00

8 lines
248 B
Ruby

class Relationship < ApplicationRecord
belongs_to :source, class_name: 'User'
belongs_to :target, class_name: 'User'
validates :source_id, presence: true
validates :target_id, presence: true
default_scope { order(created_at: :asc) }
end