docbrown/app/models/note.rb

5 lines
193 B
Ruby

class Note < ApplicationRecord
belongs_to :noteable, polymorphic: true, touch: true
belongs_to :author, class_name: "User", optional: true
validates :reason, :content, presence: true
end