sillyforum/app/models/forum_thread.rb
2026-03-17 12:49:38 +00:00

4 lines
141 B
Ruby

class ForumThread < ApplicationRecord
belongs_to :forum_topic
has_many :replies, :foreign_key => "thread_id", :dependent => :destroy
end