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

History | View | Annotate | Download (244 Bytes)

1
class AddInstitutionTypeColumnToSsamrUserDetails < ActiveRecord::Migration
2
  def self.up
3
     add_column :ssamr_user_details, :institution_type, :boolean
4
  end
5

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