git-svn-id: http://redmine.rubyforge.org/svn/trunk@1220 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
0ec13848b0
commit
66594d46b2
|
@ -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,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>
|
||||
|
|
|
@ -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…
Reference in New Issue