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

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

class AddTelesignToApplicationSettings < Gitlab::Database::Migration[2.0]
  def change
    add_column :application_settings, :encrypted_telesign_customer_xid, :binary
    add_column :application_settings, :encrypted_telesign_customer_xid_iv, :binary

    add_column :application_settings, :encrypted_telesign_api_key, :binary
    add_column :application_settings, :encrypted_telesign_api_key_iv, :binary
  end
end