10 lines
227 B
Ruby
10 lines
227 B
Ruby
class Note < ApplicationRecord
|
|
include Syncable
|
|
belongs_to :user, optional: true
|
|
belongs_to :notable, polymorphic: true
|
|
|
|
validates :content, presence: true
|
|
|
|
scope :order_by_recent, -> { order(created_at: :desc) }
|
|
end
|