Increase username length limit from 30 to 60 (#2719).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8778 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-02-05 11:50:53 +00:00
parent 1d4ef8964d
commit a00f04886f
6 changed files with 34 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
class ChangeUsersLoginLimit < ActiveRecord::Migration
def self.up
change_column :users, :login, :string, :limit => nil, :default => '', :null => false
end
def self.down
change_column :users, :login, :string, :limit => 30, :default => '', :null => false
end
end