Sha256: 0be0ccd487f9bdaf9f351951f21469827e1c79a1c1b80eaca67215084f0312f4
Contents?: true
Size: 265 Bytes
Versions: 9
Compression:
Stored size: 265 Bytes
Contents
module Georgia class Menu < ActiveRecord::Base attr_accessible :name validates :name, presence: true has_many :links, dependent: :destroy accepts_nested_attributes_for :links, allow_destroy: true attr_accessible :links_attributes end end
Version data entries
9 entries across 9 versions & 1 rubygems