mirror of
https://github.com/redmine/redmine.git
synced 2025-11-09 06:46:01 +01:00
4 lines
102 B
Ruby
4 lines
102 B
Ruby
|
|
class Topic < ActiveRecord::Base
|
||
|
|
has_many :replies, :include => [:user], :dependent => :destroy
|
||
|
|
end
|