houdini/app/models/nonprofit_account.rb

13 lines
238 B
Ruby
Raw Normal View History

class NonprofitAccount < ActiveRecord::Base
attr_accessible \
:stripe_account_id, #str
:nonprofit, :nonprofit_id #int
belongs_to :nonprofit
validates :nonprofit, presence: true
validates :stripe_account_id, presence: true
end