Implements Contacts

This commit is contained in:
Henne Vogelsang 2014-07-31 18:49:46 +02:00
parent 4955b2b7b8
commit eb3e6898d2
9 changed files with 156 additions and 5 deletions

View file

@ -0,0 +1,17 @@
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