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: 673628e106b9c24400a205baa1c33809018fa8a9 (plain)
1
2
3
4
5
class AddGitlabAccessTokenToUser < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :gitlab_access_token, :string
  end
end