blob: 5cc2f0d1df81e26cf1c253158dfaefd236cca119 (
plain)
1
2
3
4
5
6
7
8
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
|