summaryrefslogtreecommitdiff
path: root/db/migrate/20210430034712_add_alert_manager_token_to_clusters_integration_prometheus.rb
blob: 48ab860a63b65c85444804430ec1fc8adf955ce3 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddAlertManagerTokenToClustersIntegrationPrometheus < ActiveRecord::Migration[6.0]
  def change
    change_table :clusters_integration_prometheus do |t|
      t.text :encrypted_alert_manager_token
      t.text :encrypted_alert_manager_token_iv
    end
  end
end