class ForumCategory < ActiveRecord::Base #attr_accessible :description, :parent_id, :title, :forum_id belongs_to :forum has_many :forum_topics, :foreign_key => :category_id validates :title, :presence => true end