mirror of
https://github.com/kingomarnajjar/curly-happiness.git
synced 2026-07-26 06:37:18 +10:00
10 lines
217 B
Ruby
10 lines
217 B
Ruby
class Message < ActiveRecord::Base
|
|
belongs_to :conversation
|
|
belongs_to :user
|
|
validates_presence_of :body, :conversation_id, :user_id
|
|
|
|
# def message_time
|
|
# created_at.strftime("%m/%d/%y at %l:%M %p")
|
|
# end
|
|
|
|
end
|