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

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

class AddDevopsAdoptionSastDast < ActiveRecord::Migration[6.1]
  def change
    add_column :analytics_devops_adoption_snapshots, :sast_enabled_count, :integer
    add_column :analytics_devops_adoption_snapshots, :dast_enabled_count, :integer
  end
end