Guest User

Untitled

a guest
Oct 17th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Payment < ActiveRecord::Base
  2. attr_accessible :credits, :currency, :user_id
  3. belongs_to :user
  4.  
  5. # Currencies we can work with
  6. CURRENCIES = ["EUR","GBP","USD","CAD","AUD","SEK","NOK","DKK","CHF"]
  7.  
  8. end
Add Comment
Please, Sign In to add comment