Completed
Push — master ( 4dbe50...5a9713 )
by
unknown
8s
created

AddMoreAttributesToParticipant   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %
Metric Value
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 6 1
1
class AddMoreAttributesToParticipant < ActiveRecord::Migration
2
  def change
3
    add_column :participants, :github_profile_username, :string #github username
4
    add_column :participants, :github_og_image, :string # github avatar
5
    add_column :participants, :github_og_url,   :string # github user profile url
6
    add_column :participants, :twitter_handle,  :string
7
  end
8
end
9