Merged r3860 from trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3861 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
4b52b7a8df
commit
8a1d45ffd6
|
@ -19,12 +19,13 @@ class Change < ActiveRecord::Base
|
||||||
belongs_to :changeset
|
belongs_to :changeset
|
||||||
|
|
||||||
validates_presence_of :changeset_id, :action, :path
|
validates_presence_of :changeset_id, :action, :path
|
||||||
|
before_save :init_path
|
||||||
|
|
||||||
def relative_path
|
def relative_path
|
||||||
changeset.repository.relative_path(path)
|
changeset.repository.relative_path(path)
|
||||||
end
|
end
|
||||||
|
|
||||||
def before_save
|
def init_path
|
||||||
path ||= ""
|
self.path ||= ""
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
class ChangeChangesPathLengthLimit < ActiveRecord::Migration
|
class ChangeChangesPathLengthLimit < ActiveRecord::Migration
|
||||||
def self.up
|
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, :path, :text, :null => false
|
||||||
|
|
||||||
change_column :changes, :from_path, :text
|
change_column :changes, :from_path, :text
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue