From e305a67d1e675a1d7bcb46e86331c730afb4ddba Mon Sep 17 00:00:00 2001 From: nilsding Date: Mon, 8 Dec 2014 23:02:31 +0100 Subject: [PATCH] 255 --- app/models/question.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/question.rb b/app/models/question.rb index 5c86d72f..adc1f802 100644 --- a/app/models/question.rb +++ b/app/models/question.rb @@ -2,5 +2,5 @@ class Question < ActiveRecord::Base belongs_to :user has_many :answers - validates :content, length: { maximum: 200 } + validates :content, length: { maximum: 255 } end