ruby-paypal-example/app/models/payment.rb

5 lines
99 B
Ruby
Raw Normal View History

2013-04-30 05:55:08 +00:00
class Payment < ActiveRecord::Base
attr_accessible :profile
2013-04-30 09:42:53 +00:00
validates_presence_of :profile
2013-04-30 05:55:08 +00:00
end