debian-mirror-gitlab/db/migrate/20221108015813_add_telesign_to_application_settings.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
445 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# 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