Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20111019212429_add_social_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0ffe5366a40333b1b72698a6d36f0f5459e5bf4 (plain)
1
2
3
4
5
6
7
class AddSocialToUser < ActiveRecord::Migration
  def change
    add_column :users, :skype, :string
    add_column :users, :linkedin, :string
    add_column :users, :twitter, :string
  end
end