2019-04-28 11:56:16 +03:00
|
|
|
class CreateVolunteers < ActiveRecord::Migration[4.2]
|
2015-10-21 23:13:39 +03:00
|
|
|
def change
|
|
|
|
create_table :volunteers do |t|
|
|
|
|
t.string :name
|
|
|
|
t.string :picture_id
|
|
|
|
t.string :email
|
|
|
|
t.string :unique_id
|
|
|
|
t.string :phone
|
|
|
|
t.string :tshirt_size
|
|
|
|
t.string :tshirt_cut
|
|
|
|
t.string :food_preferences
|
|
|
|
t.text :previous_experience
|
|
|
|
t.text :notes
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :volunteers, :unique_id, unique: true
|
|
|
|
end
|
|
|
|
end
|