Files
old-holivud2/app/models/note.rb
2020-06-03 07:24:01 +02:00

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