carmentang/engineerswithoutborders

View on GitHub
db/migrate/20160318044527_add_basic_info_to_volunteers.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddBasicInfoToVolunteers < ActiveRecord::Migration
  def change
    add_column :volunteers, :first_name, :text
    add_column :volunteers, :last_name, :text
    add_column :volunteers, :phone, :text
    add_column :volunteers, :email, :text
    add_column :volunteers, :city, :text
    add_column :volunteers, :state, :text
    add_column :volunteers, :subscribe, :text
    add_column :volunteers, :join_project_team, :text
    add_column :volunteers, :status, :text
    add_column :volunteers, :education, :text
    add_column :volunteers, :major, :text
    add_column :volunteers, :certification, :text
    add_column :volunteers, :languages, :text
    add_column :volunteers, :fluency, :text
    add_column :volunteers, :ewb_experience, :text
    add_column :volunteers, :international_experience, :text
    add_column :volunteers, :work_experience, :text
    add_column :volunteers, :reason, :text
    add_column :volunteers, :time_investment, :text
    add_column :volunteers, :travel, :text
    add_column :volunteers, :places, :text
    add_column :volunteers, :current_events, :text
    add_column :volunteers, :involvement, :text
  end
  
  
end