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