# HG changeset patch # User luisf # Date 1296057482 0 # Node ID 2d5da64204bcf48a7cec56cbe24291af72fb7ffe # Parent 6bd9b26ebd070852c164f6bbadea0d27fc003c31 migration with new "other_institution" column in ssamr_user_details table. diff -r 6bd9b26ebd07 -r 2d5da64204bc db/migrate/20110126153504_add_other_institution_column_to_ssamr_user_details.rb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/db/migrate/20110126153504_add_other_institution_column_to_ssamr_user_details.rb Wed Jan 26 15:58:02 2011 +0000 @@ -0,0 +1,9 @@ +class AddOtherInstitutionColumnToSsamrUserDetails < ActiveRecord::Migration + def self.up + add_column :ssamr_user_details, :other_institution, :string + end + + def self.down + remove_column :ssamr_user_details, :other_institution + end +end