class Accounting::CafeteriaTransaction < ApplicationRecord
  belongs_to :accounting_transaction, foreign_key: :transaction_id,
    class_name: 'Accounting::Transaction', dependent: :destroy
  belongs_to :student_cafeteria_transaction, foreign_key: :cafeteria_transaction_id,
    dependent: :destroy
end
