# frozen_string_literal: true class AddTokenEncryptedToDeployTokens < ActiveRecord::Migration[5.1] include Gitlab::Database::MigrationHelpers DOWNTIME = false # rubocop:disable Migration/PreventStrings def change add_column :deploy_tokens, :token_encrypted, :string, limit: 255 end # rubocop:enable Migration/PreventStrings end