debian-mirror-gitlab/db/migrate/20210407002511_add_type_to_dast_site_profile.rb
2021-04-29 21:17:54 +05:30

8 lines
210 B
Ruby

# 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