Mercurial > hg > soundsoftware-site
view db/migrate/20101216145813_fix_university_name_in_ssamr_details_table.rb @ 1257:5bafe0f91f6e redmine-2.2-integration
Simplified JS on registration page.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 10 Apr 2013 11:57:46 +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