view db/migrate/20101216145813_fix_university_name_in_ssamr_details_table.rb @ 992:f11be6b9bde1 insider

More layout tweaks for this font
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 09 Nov 2012 12:11:07 +0000
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