##// END OF EJS Templates
tagged version 3.2.4...
tagged version 3.2.4 git-svn-id: http://svn.redmine.org/redmine/tags/3.2.4@15903 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4288:8ef06826c31b
r15521:a6765ece867e 3.2.4
Show More
20101114115114_change_projects_name_limit.rb
9 lines | 284 B | text/x-ruby | RubyLexer
/ db / migrate / 20101114115114_change_projects_name_limit.rb
Jean-Philippe Lang
Raised maximum length of project names and identifiers to 255 and 100 respectively (#6446)....
r4288 class ChangeProjectsNameLimit < ActiveRecord::Migration
def self.up
change_column :projects, :name, :string, :limit => nil, :default => '', :null => false
end
def self.down
change_column :projects, :name, :string, :limit => 30, :default => '', :null => false
end
end