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

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

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

  DOWNTIME = false

  def change
    add_column :operations_feature_flags_clients, :token_encrypted, :string # rubocop:disable Migration/AddLimitToStringColumns
  end
end