clarion/db/migrate/20140807103632_create_speak...

18 lines
389 B
Ruby
Raw Normal View History

class CreateSpeakerProfiles < ActiveRecord::Migration[4.2]
def change
create_table :speaker_profiles do |t|
2014-08-31 14:57:34 +03:00
t.string :first_name
t.string :last_name
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
t.timestamps
end
end
end