summaryrefslogtreecommitdiffstats
path: root/db/migrate/20100705164950_change_changes_path_length_limit.rb
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-07-24 00:19:32 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-07-24 00:19:32 +0000
commita628b0f186cf4d182ce5cee1a497ad42c5246406 (patch)
treec5d82c2e3d559c55ce5efd2f285ca726b1b02402 /db/migrate/20100705164950_change_changes_path_length_limit.rb
parent4fef8b601d3b4095dc353d917828d09b297a17b1 (diff)
downloadredmine-a628b0f186cf4d182ce5cee1a497ad42c5246406.tar.gz
redmine-a628b0f186cf4d182ce5cee1a497ad42c5246406.zip
Force-clear the default value for migration from :string to :text. #5846 #5771
This is a special case for MySQL in Win32. Contributed by Holger Just. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3860 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db/migrate/20100705164950_change_changes_path_length_limit.rb')
-rw-r--r--db/migrate/20100705164950_change_changes_path_length_limit.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/db/migrate/20100705164950_change_changes_path_length_limit.rb b/db/migrate/20100705164950_change_changes_path_length_limit.rb
index 62ba4ec22..62b8644a4 100644
--- a/db/migrate/20100705164950_change_changes_path_length_limit.rb
+++ b/db/migrate/20100705164950_change_changes_path_length_limit.rb
@@ -1,6 +1,9 @@
class ChangeChangesPathLengthLimit < ActiveRecord::Migration
def self.up
+ # 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