Files
growstuff/app/models/product.rb
2017-01-14 21:03:01 +13:00

16 lines
305 B
Ruby

class Product < ActiveRecord::Base
has_and_belongs_to_many :orders # rubocop:disable Rails/HasAndBelongsToMany
belongs_to :account_type
validates :paid_months,
numericality: {
only_integer: true,
greater_than_or_equal_to: 0
},
allow_nil: true
def to_s
name
end
end