summaryrefslogtreecommitdiff
path: root/app/models/payment.rb
blob: 5d5e862ff945364194b15d014ad0ea980195e6c5 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

# Payment
# total: float
class Payment < ApplicationRecord
  has_one :order
  belongs_to :card
end