debian-mirror-gitlab/db/migrate/20210611101034_add_devops_adoption_sast_dast.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
283 B
Ruby
Raw Normal View History

2021-09-30 23:02:18 +05:30
# 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