class UsState < ApplicationRecord
  has_many :student_details, dependent: :nullify, inverse_of: :birth_state

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