Force the default value of path to be set on the Change model class. #5771

This is needed because MySQL does not support default values on text columns
(Error introduced in r3828)

Contributed by Holger Just

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3830 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Eric Davis 2010-07-06 21:06:09 +00:00
parent ad73f12a6b
commit 0d5fca9ba5
2 changed files with 5 additions and 1 deletions

View File

@ -23,4 +23,8 @@ class Change < ActiveRecord::Base
def relative_path
changeset.repository.relative_path(path)
end
def before_save
path ||= ""
end
end

View File

@ -1,6 +1,6 @@
class ChangeChangesPathLengthLimit < ActiveRecord::Migration
def self.up
change_column :changes, :path, :text, :default => "", :null => false
change_column :changes, :path, :text, :null => false
change_column :changes, :from_path, :text
end