mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-29 20:25:09 -04:00
16 lines
305 B
Ruby
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
|