Guest User

Untitled

a guest
Mar 6th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class PaymentMethod < ActiveRecord::Base
  2. has_many :payments
  3. has_many :orders # where it's the selected payment method
  4.  
  5. has_and_belongs_to_many :countries
  6. has_many :country_freight_methods
  7.  
  8. belongs_to :item # fee (eg direct deposit)
  9.  
  10. def to_s
  11. name
  12. end
  13.  
  14. end
Add Comment
Please, Sign In to add comment