20110511000000_add_repositories_extra_info.rb
9 lines
| 198 B
| text/x-ruby
|
RubyLexer
|
r5642 | class AddRepositoriesExtraInfo < ActiveRecord::Migration | ||
def self.up | ||||
add_column :repositories, :extra_info, :text | ||||
end | ||||
def self.down | ||||
remove_column :repositories, :extra_info | ||||
end | ||||
end | ||||