sillyforum/app/models/forum_topic.rb

5 lines
110 B
Ruby
Raw Normal View History

2026-03-17 12:49:38 +00:00
class ForumTopic < ApplicationRecord
belongs_to :category
has_many :forum_threads, :dependent => :destroy
end