5 lines
110 B
Ruby
5 lines
110 B
Ruby
|
|
class ForumTopic < ApplicationRecord
|
||
|
|
belongs_to :category
|
||
|
|
has_many :forum_threads, :dependent => :destroy
|
||
|
|
end
|