class Admission::ApplicationAttachment < ApplicationRecord
  belongs_to :application
  belongs_to :attachment

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

  acts_as_list scope: :application
end
