class IsoCountry < ApplicationRecord
  has_many :student_details, dependent: :nullify, inverse_of: :birth_country

  scope :ordered, -> { order(:name) }
end
