gravier_app/app/models/forum_category.rb
2017-09-21 12:37:53 +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