2014-08-07 14:05:13 +03:00
|
|
|
class CreateSpeakerProfiles < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :speaker_profiles do |t|
|
2014-08-31 14:57:34 +03:00
|
|
|
t.string :first_name
|
|
|
|
t.string :last_name
|
2014-08-07 14:05:13 +03:00
|
|
|
t.string :organisation
|
|
|
|
t.string :public_email
|
2014-08-31 14:57:34 +03:00
|
|
|
t.string :photo_url
|
|
|
|
t.string :mobile_phone
|
|
|
|
t.text :biography
|
|
|
|
t.string :github
|
|
|
|
t.string :twitter
|
2014-08-07 14:05:13 +03:00
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|