summaryrefslogtreecommitdiff
path: root/db/migrate/20220204193000_add_integrations_encrypted_properties.rb
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