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

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

class AddIntegrationsEncryptedProperties < Gitlab::Database::Migration[1.0]
  def change
    add_column :integrations, :encrypted_properties, :binary
    add_column :integrations, :encrypted_properties_iv, :binary
  end
end