view db/migrate/20110511000000_add_repositories_extra_info.rb @ 1086:5ebdeb79ea9c feature_550

Add "My Page" box for my projects. Currently this also affects the layout of the non-My-Page version of the My Projects list, need to adjust that
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 23 Nov 2012 14:29:55 +0000
parents cbce1fd3b1b7
children
line wrap: on
line source
class AddRepositoriesExtraInfo < ActiveRecord::Migration
  def self.up
    add_column :repositories, :extra_info, :text
  end

  def self.down
    remove_column :repositories, :extra_info
  end
end