summaryrefslogtreecommitdiff
path: root/db/migrate/20190606054742_add_token_encrypted_to_operations_feature_flags_clients.rb
blob: 01cd49ac219855f054c92799c162efc1ab18320d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

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

  DOWNTIME = false

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