060_change_changesets_committer_limit.rb
9 lines
| 226 B
| text/x-ruby
|
RubyLexer
|
r650 | 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 | ||||