debian-mirror-gitlab/db/migrate/20220204193000_add_integrations_encrypted_properties.rb
2022-05-07 20:08:51 +05:30

8 lines
255 B
Ruby

# 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