retrospring/app/models/question.rb
2014-12-08 15:34:37 +01:00

6 lines
127 B
Ruby

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