negos_app/app/models/message.rb
2016-10-18 17:19:45 +02:00

9 lines
186 B
Ruby
Executable File

class Message < ActiveRecord::Base
belongs_to :customer
belongs_to :admin
belongs_to :need
paginates_per 5
validates :content, :presence => true, length: {within: 1..512}
end