Files
old-holivud2/app/models/note.rb

8 lines
168 B
Ruby
Raw Normal View History

2020-05-31 22:38:19 +02:00
class Note < ApplicationRecord
include Syncable
belongs_to :user, optional: true
belongs_to :notable, polymorphic: true
validates :content, presence: true
end