You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
614 B
23 lines
614 B
class CreateVolunteers < ActiveRecord::Migration
|
|
def change
|
|
create_table :volunteers do |t|
|
|
t.string :name
|
|
t.string :email
|
|
t.string :phone
|
|
t.date :orientation_date
|
|
t.integer :other_volunteer_hours
|
|
t.text :referral
|
|
t.text :reason
|
|
t.text :skills
|
|
t.text :wants
|
|
t.boolean :interested_in_improving
|
|
t.boolean :available_weekends
|
|
t.boolean :available_weekdays
|
|
t.boolean :available_shorter_hours
|
|
t.boolean :available_longer_hours
|
|
t.boolean :flexible
|
|
t.text :questions
|
|
t.text :improve_orientation
|
|
end
|
|
end
|
|
end
|
|
|