From: Jean-Philippe Lang Date: Sat, 30 May 2015 08:11:05 +0000 (+0000) Subject: Merged r14267 (#19840). X-Git-Tag: 2.6.6~13 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=09fdc1fcf1fe64447d99f1c5f8b82d5b70208d58;p=redmine.git Merged r14267 (#19840). git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14280 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/version.rb b/app/models/version.rb index d13387870..ed5b62812 100644 --- a/app/models/version.rb +++ b/app/models/version.rb @@ -30,6 +30,7 @@ class Version < ActiveRecord::Base validates_presence_of :name validates_uniqueness_of :name, :scope => [:project_id] validates_length_of :name, :maximum => 60 + validates_length_of :description, :maximum => 255 validates :effective_date, :date => true validates_inclusion_of :status, :in => VERSION_STATUSES validates_inclusion_of :sharing, :in => VERSION_SHARINGS