20140528193816_add_extra_fields_to_user.rb 355 Bytes
class AddExtraFieldsToUser < ActiveRecord::Migration
  def self.up
    change_table :users do |t|
      t.string :secondary_email
      t.references :institution
      t.string :role
    end
  end

  def self.down
    change_table :users do |t|
      t.remove :secondary_email
      t.remove_references :institution
      t.remove :role
    end
  end
end