class Admission::AgreementVersion < ApplicationRecord
  belongs_to :agreement

  def self.find_by_datetime(datetime)
    where('created_at <= ?', datetime).order(created_at: :desc).first
  end
end
