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

20190711200508_add_token_encrypted_to_deploy_tokens.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c3524410575bc68c4959e651e2700f607aca9e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddTokenEncryptedToDeployTokens < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :deploy_tokens, :token_encrypted, :string
  end
end