negos_app/app/models/message.rb
2016-02-16 21:09:48 +01:00

8 lines
166 B
Ruby
Executable File

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