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

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

class AddDoraIncidentsCount < Gitlab::Database::Migration[1.0]
  def change
    add_column :dora_daily_metrics, :incidents_count, :integer
  end
end