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

10 lines
257 B
Ruby
Raw Normal View History

2018-11-30 11:24:05 -05:00
# frozen_string_literal: true
2018-11-30 11:32:43 -05:00
class CountryState < ApplicationRecord
2018-12-06 17:49:50 -05:00
has_one :regional_office, dependent: :restrict_with_exception
has_many :membership_apps, dependent: :restrict_with_exception
2018-11-30 11:24:05 -05:00
validates :name, presence: true, uniqueness: true
end