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

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

class AddHealthStatusColumnOnClustersIntegrationPrometheus < Gitlab::Database::Migration[1.0]
  def change
    # For now, health checks will only run on monitor demo projects
    add_column :clusters_integration_prometheus, :health_status, :smallint, limit: 2, default: 0, null: false
  end
end