Mercurial > hg > soundsoftware-site
annotate db/migrate/20101216145813_fix_university_name_in_ssamr_details_table.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 | f6ea6ffaaeeb |
children |
rev | line source |
---|---|
luisf@106 | 1 class FixUniversityNameInSsamrDetailsTable < ActiveRecord::Migration |
luisf@106 | 2 def self.up |
luisf@106 | 3 rename_column :ssamr_user_details, :university, :institution_id |
luisf@106 | 4 end |
luisf@106 | 5 |
luisf@106 | 6 def self.down |
luisf@106 | 7 # there's no need to rollback the name of this column |
luisf@106 | 8 # because it was not used previously |
luisf@106 | 9 end |
luisf@106 | 10 end |