summaryrefslogtreecommitdiff
path: root/db/migrate/20150217123345_add_bitbucket_access_token_and_secret_to_user.rb
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