9 lines
227 B
Ruby
9 lines
227 B
Ruby
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
|