Browse Source

Allow longer version names (#711, closes #712).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1220 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/0.7.0-RC1
Jean-Philippe Lang 16 years ago
parent
commit
66594d46b2

+ 1
- 1
app/models/version.rb View 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

+ 1
- 1
app/views/versions/_form.rhtml View 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>

+ 9
- 0
db/migrate/090_change_versions_name_limit.rb View File

@@ -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

Loading…
Cancel
Save