mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-29 04:02:17 -04:00
16 lines
270 B
Ruby
16 lines
270 B
Ruby
class Product < ActiveRecord::Base
|
|
has_and_belongs_to_many :orders
|
|
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
|