Mercurial > hg > soundsoftware-site
view db/migrate/20110511000000_add_repositories_extra_info.rb @ 1391:8580d1d1150e luisf
Adding 2 new js scripts; added the code removed from the partials. Minor cleaning.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 25 Sep 2013 17:44:48 +0100 |
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