| Total Complexity | 1 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| 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 |