Merge pull request #312 from differentreality/user_fields_volunteers

Add volunteer fields to user
This commit is contained in:
Artem Chernikov 2014-07-14 21:47:16 +02:00
commit aee73fb442
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,8 @@
class AddVolunteerFieldsToUser < ActiveRecord::Migration
def change
add_column :users, :mobile, :string
add_column :users, :tshirt, :string
add_column :users, :languages, :string
add_column :users, :volunteer_experience, :text
end
end