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

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

class AddCodeownersDevopsAdoptionSnapshot < ActiveRecord::Migration[6.0]
  def change
    add_column :analytics_devops_adoption_snapshots, :total_projects_count, :integer
    add_column :analytics_devops_adoption_snapshots, :code_owners_used_count, :integer
  end
end