class Admission::ApplicationDocument < ApplicationRecord
  belongs_to :application
  belongs_to :document

  scope :ordered, -> { order(:position) }

  acts_as_list scope: :application
end
