mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Implements Contacts
This commit is contained in:
parent
4955b2b7b8
commit
eb3e6898d2
9 changed files with 156 additions and 5 deletions
17
db/migrate/20140731153332_create_contacts.rb
Normal file
17
db/migrate/20140731153332_create_contacts.rb
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue