blob: b050963798cc10b48b0b336de78e449422bf2460 (
plain)
1
2
3
4
5
6
7
8
9
|
class ChangeChangesetsCommitterLimit < ActiveRecord::Migration
def self.up
change_column :changesets, :committer, :string, :limit => nil
end
def self.down
change_column :changesets, :committer, :string, :limit => 30
end
end
|