9 lines
186 B
Ruby
Executable File
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
|