add volunteer fields to user

This commit is contained in:
Stella Rouzi 2014-07-14 17:35:03 +03:00
parent 50e75c6dd4
commit e37e0a50c8
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