16 lines
266 B
Ruby
16 lines
266 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class Menu < ActiveRecord::Base
|
|
|
|
|
|
#field :name, :type => String
|
|
#field :max_levels, :type => Integer
|
|
has_many :menu_items
|
|
|
|
|
|
validates_presence_of :name, :max_levels
|
|
validates_uniqueness_of :name
|
|
|
|
# references_many :menu_items
|
|
|
|
end
|