class Admission::ApplicationAgreement < ApplicationRecord
  belongs_to :application
  belongs_to :agreement

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

  acts_as_list scope: :application
end
