mailr/vendor/plugins/will_paginate/spec/fixtures/topic.rb

7 lines
236 B
Ruby
Raw Normal View History

2009-02-09 19:13:08 +01:00
class Topic < ActiveRecord::Base
has_many :replies, :dependent => :destroy, :order => 'replies.created_at DESC'
belongs_to :project
named_scope :mentions_activerecord, :conditions => ['topics.title LIKE ?', '%ActiveRecord%']
end