9 lines
257 B
Ruby
9 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CountryState < ApplicationRecord
|
|
has_one :regional_office, dependent: :restrict_with_exception
|
|
|
|
has_many :membership_apps, dependent: :restrict_with_exception
|
|
|
|
validates :name, presence: true, uniqueness: true
|
|
end
|