blob: 68d6d94d4c12d92e33cc3b9669d49b92fabc3c8b (
plain)
1
2
3
4
5
6
|
class Message < ApplicationRecord
belongs_to :sender, class_name: "Character", optional: true
belongs_to :recipient, class_name: "Character"
validates :body, length: { minimum: 1, maximum: 10000 }
end
|