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

20150116234545_add_gitlab_access_token_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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