docbrown/app/models/credit.rb
2019-04-25 07:56:15 -04:00

6 lines
158 B
Ruby

class Credit < ApplicationRecord
attr_accessor :number_to_purchase
belongs_to :user, optional: true
belongs_to :organization, optional: true
end