sillyforum/app/models/forum_thread.rb

5 lines
141 B
Ruby
Raw Permalink Normal View History

2026-03-17 12:49:38 +00:00
class ForumThread < ApplicationRecord
belongs_to :forum_topic
has_many :replies, :foreign_key => "thread_id", :dependent => :destroy
end