1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/fixtures/reply.rb
Damien Mathieu 38c2e4687f Missing rename from named_scope to scope [#3735 status:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
2010-01-18 09:33:36 +01:00

7 lines
153 B
Ruby

class Reply < ActiveRecord::Base
scope :base
belongs_to :topic, :include => [:replies]
belongs_to :developer
validates_presence_of :content
end