summaryrefslogtreecommitdiff
path: root/db/migrate/20190711200508_add_token_encrypted_to_deploy_tokens.rb
blob: ea0956fdf7f81131434010d84522d33c6e57322d (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, limit: 255
  end
end