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 / 20110126153504_add_other_institution_column_to_ssamr_user_details.rb @ 442:753f1380d6bc

History | View | Annotate | Download (245 Bytes)

1
class AddOtherInstitutionColumnToSsamrUserDetails < ActiveRecord::Migration
2
  def self.up
3
    add_column :ssamr_user_details, :other_institution, :string
4
  end
5

    
6
  def self.down
7
    remove_column :ssamr_user_details, :other_institution
8
  end
9
end