Retrospring/app/models/question.rb

7 lines
127 B
Ruby

class Question < ActiveRecord::Base
belongs_to :user
has_many :answers
validates :content, length: { maximum: 255 }
end