Mercurial > hg > soundsoftware-site
view db/migrate/20101216145813_fix_university_name_in_ssamr_details_table.rb @ 626:e2663e0bd5a6 feature_36
Continued work on permissions (Feature #241 and Feature #242).
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 24 Aug 2011 17:18:11 +0100 |
parents | f6ea6ffaaeeb |
children |
line wrap: on
line source
class FixUniversityNameInSsamrDetailsTable < ActiveRecord::Migration def self.up rename_column :ssamr_user_details, :university, :institution_id end def self.down # there's no need to rollback the name of this column # because it was not used previously end end