class Admission::ApplicationEssay < ApplicationRecord
  belongs_to :application
  belongs_to :essay

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

  acts_as_list scope: :application
end
