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: 78e9fd0c3a92f802dcbfda7dfaf69a5e43fb2ce0 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddBitbucketAccessTokenAndSecretToUser < ActiveRecord::Migration
  def change
    add_column :users, :bitbucket_access_token, :string
    add_column :users, :bitbucket_access_token_secret, :string
  end
end