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

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

class AddTypeToDastSiteProfile < ActiveRecord::Migration[6.0]
  def change
    add_column :dast_site_profiles, :target_type, :integer, limit: 2, default: 0, null: false
  end
end