instiki/vendor/rails/activerecord/test/models/comment.rb

26 lines
510 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
class Comment < ActiveRecord::Base
named_scope :containing_the_letter_e, :conditions => "comments.body LIKE '%e%'"
2007-01-22 14:43:50 +01:00
belongs_to :post, :counter_cache => true
2007-01-22 14:43:50 +01:00
def self.what_are_you
'a comment...'
end
2007-01-22 14:43:50 +01:00
def self.search_by_type(q)
self.find(:all, :conditions => ["#{QUOTED_TYPE} = ?", q])
end
end
class SpecialComment < Comment
def self.what_are_you
'a special comment...'
end
end
class VerySpecialComment < Comment
def self.what_are_you
'a very special comment...'
end
end