gitlab-org--gitlab-foss/db/migrate/20150217123345_add_bitbucke...

8 lines
235 B
Ruby

# 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