jipe_app/app/models/forum_category.rb
2017-08-14 10:53:30 +02:00

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