9 lines
207 B
Ruby
9 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RegionalOffice < ApplicationRecord
|
|
belongs_to :country_state
|
|
|
|
has_many :membership_apps, through: :country_state
|
|
|
|
validates :country_state_id, uniqueness: true
|
|
end
|