To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 20101216145813_fix_university_name_in_ssamr_details_table.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (283 Bytes)

1
class FixUniversityNameInSsamrDetailsTable < ActiveRecord::Migration
2
  def self.up
3
    rename_column :ssamr_user_details, :university, :institution_id
4
  end
5

    
6
  def self.down
7
    # there's no need to rollback the name of this column
8
    # because it was not used previously
9
  end
10
end