# == Schema Information
#
# Table name: notes
#
# id :integer not null, primary key
# archived :boolean
# archived_by :integer
# text :text
# created_at :datetime
# updated_at :datetime
# answer_id :integer
# user_id :integer
#
# Indexes
#
# index_notes_on_answer_id (answer_id)
#
# Foreign Keys
#
# fk_rails_... (answer_id => answers.id)
# fk_rails_... (user_id => users.id)
#
class Note < ActiveRecord::Base
##
# Associations
belongs_to :answer
belongs_to :user
validates :text, :answer, :user, presence: {message: _("can't be blank")}
end