aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/reply.rb
blob: 16b53be18a85fef2b7de19beaa0d86402adeb2ea (plain) (blame)
1
2
3
4
5
6
7
class Reply < ActiveRecord::Base
  scope :base, -> { scoped }
  belongs_to :topic, -> { includes(:replies) }
  belongs_to :developer

  validates_presence_of :content
end