mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
19 lines
370 B
Ruby
19 lines
370 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|