remove trailing white-spaces from db/migrate/20100705164950_change_changes_path_length_limit.rb (#9510)

Contributed by Igor Zubkov.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7755 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-11-09 02:46:23 +00:00
parent a40e2ec5c7
commit 4b38902ef7
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ class ChangeChangesPathLengthLimit < ActiveRecord::Migration
# these are two steps to please MySQL 5 on Win32
change_column :changes, :path, :text, :default => nil, :null => true
change_column :changes, :path, :text, :null => false
change_column :changes, :from_path, :text
end