tracks/app/models/note.rb
2020-09-05 02:17:32 +03:00

6 lines
168 B
Ruby

class Note < ApplicationRecord
belongs_to :user
belongs_to :project
scope :with_body, lambda { |terms| where("body " + Common.like_operator + " ?", terms) }
end