luisf@106: class FixUniversityNameInSsamrDetailsTable < ActiveRecord::Migration luisf@106: def self.up luisf@106: rename_column :ssamr_user_details, :university, :institution_id luisf@106: end luisf@106: luisf@106: def self.down luisf@106: # there's no need to rollback the name of this column luisf@106: # because it was not used previously luisf@106: end luisf@106: end