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

12 lines
261 B
Ruby
Raw Normal View History

2018-12-06 17:49:50 -05:00
# frozen_string_literal: true
class RegionalOffice < ApplicationRecord
belongs_to :country_state
2018-12-06 18:00:15 -05:00
has_many :membership_apps, through: :country_state
2018-12-14 23:09:43 -05:00
has_many :people, dependent: :restrict_with_exception
2019-03-23 21:42:27 -04:00
validates :country_state, uniqueness: true
2018-12-06 17:49:50 -05:00
end