1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/relationship.rb

19 lines
398 B
Ruby

# frozen_string_literal: true
class Relationship < ApplicationRecord
################
# Associations #
################
belongs_to :status, class_name: 'RelationStatus'
belongs_to :person, inverse_of: :all_relationships
belongs_to :regional_office
###############
# Validations #
###############
validates :from_date, presence: true, uniqueness: { scope: :person_id }
end