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

AddMoreAttributesToParticipant.change()   A

Complexity

Conditions 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 6
rs 9.4285
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