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

20150217123345_add_bitbucket_access_token_and_secret_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23ac1b399ec4007dc91ff6ab893015979ecbb1cb (plain)
1
2
3
4
5
6
class AddBitbucketAccessTokenAndSecretToUser < ActiveRecord::Migration
  def change
    add_column :users, :bitbucket_access_token, :string
    add_column :users, :bitbucket_access_token_secret, :string
  end
end