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:
parent
1e28f7758f
commit
138566de0b
|
@ -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
|
Loading…
Reference in New Issue