10 lines
218 B
Ruby
10 lines
218 B
Ruby
![]() |
class OffsitePayment < ActiveRecord::Base
|
||
|
|
||
|
attr_accessible :gross_amount, :kind, :date, :check_number
|
||
|
belongs_to :payment, dependent: :destroy
|
||
|
belongs_to :donation
|
||
|
belongs_to :nonprofit
|
||
|
belongs_to :supporter
|
||
|
|
||
|
end
|