Committer field in the Changesets table is now varchar 255.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@656 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2007-08-25 14:35:18 +00:00
parent 1e28f7758f
commit 138566de0b
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
class ChangeChangesetsCommitterLimit < ActiveRecord::Migration
def self.up
change_column :changesets, :committer, :string
end
def self.down
change_column :changesets, :committer, :string, :limit => 30
end
end