]> source.dussan.org Git - redmine.git/commitdiff
Allow longer version names (#711, closes #712).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 9 Mar 2008 15:36:47 +0000 (15:36 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 9 Mar 2008 15:36:47 +0000 (15:36 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1220 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/version.rb
app/views/versions/_form.rhtml
db/migrate/090_change_versions_name_limit.rb [new file with mode: 0644]

index f9395c5d9917c2dd5289672376542a2e89739cbe..183500485716a86274e48ca1fc305b5500152400 100644 (file)
@@ -23,7 +23,7 @@ class Version < ActiveRecord::Base
 
   validates_presence_of :name
   validates_uniqueness_of :name, :scope => [:project_id]
-  validates_length_of :name, :maximum => 30
+  validates_length_of :name, :maximum => 60
   validates_format_of :effective_date, :with => /^\d{4}-\d{2}-\d{2}$/, :message => :activerecord_error_not_a_date, :allow_nil => true
   
   def start_date
index cd3afcccdc90209bf1bc0d15bcb73758764ad661..e18f912bfcca9ff07136dbe5b1d316341f302aff 100644 (file)
@@ -1,7 +1,7 @@
 <%= error_messages_for 'version' %>
 
 <div class="box">
-<p><%= f.text_field :name, :size => 20, :required => true %></p>
+<p><%= f.text_field :name, :size => 60, :required => true %></p>
 <p><%= f.text_field :description, :size => 60 %></p>
 <p><%= f.text_field :wiki_page_title, :label => :label_wiki_page, :size => 60, :disabled => @project.wiki.nil? %></p>
 <p><%= f.text_field :effective_date, :size => 10 %><%= calendar_for('version_effective_date') %></p>
diff --git a/db/migrate/090_change_versions_name_limit.rb b/db/migrate/090_change_versions_name_limit.rb
new file mode 100644 (file)
index 0000000..2764297
--- /dev/null
@@ -0,0 +1,9 @@
+class ChangeVersionsNameLimit < ActiveRecord::Migration
+  def self.up
+    change_column :versions, :name, :string, :limit => nil
+  end
+
+  def self.down
+    change_column :versions, :name, :string, :limit => 30
+  end
+end