tracks/app/models/note.rb
2013-05-27 12:44:31 +02:00

6 lines
145 B
Ruby

class Note < ActiveRecord::Base
belongs_to :user
belongs_to :project
scope :with_body, lambda { |terms| where("body LIKE ?", terms) }
end