summaryrefslogtreecommitdiff
path: root/db/migrate/20210407002511_add_type_to_dast_site_profile.rb
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