summaryrefslogtreecommitdiff
path: root/db/migrate/20150116234545_add_gitlab_access_token_to_user.rb
blob: e083973615aeab002b29913b2be6f635b9a9e2b3 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddGitlabAccessTokenToUser < ActiveRecord::Migration
  def change
    add_column :users, :gitlab_access_token, :string
  end
end