debian-mirror-gitlab/db/migrate/20210430034712_add_alert_manager_token_to_clusters_integration_prometheus.rb
2021-06-08 01:23:25 +05:30

11 lines
299 B
Ruby

# 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