docbrown/app/models/note.rb
2018-09-06 17:50:46 -04:00

5 lines
180 B
Ruby

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