osem-fcy/db/migrate/20140731153332_create_contacts.rb
2014-08-01 14:30:10 +02:00

17 lines
339 B
Ruby

class CreateContacts < ActiveRecord::Migration
def change
create_table :contacts do |t|
t.string :social_tag
t.string :email
t.string :facebook
t.string :googleplus
t.string :twitter
t.string :instagram
t.boolean :public
t.integer :conference_id
t.timestamps
end
end
end