mirror of
https://github.com/redmine/redmine.git
synced 2025-11-13 08:46:01 +01:00
Compatibility with Rails 1.2 is preserved. git-svn-id: http://redmine.rubyforge.org/svn/trunk@975 e93f8b46-1217-0410-a6f0-8f06a7374b81
6 lines
117 B
Ruby
6 lines
117 B
Ruby
class Reply < ActiveRecord::Base
|
|
belongs_to :topic, :include => [:replies]
|
|
|
|
validates_presence_of :content
|
|
end
|