summaryrefslogtreecommitdiff
path: root/db/migrate/20210807101446_add_cadence_to_dast_profile_schedules.rb
blob: c9b17e3d5c59d8da893dd06cd7943d6339745334 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddCadenceToDastProfileSchedules < ActiveRecord::Migration[6.1]
  def change
    add_column :dast_profile_schedules, :cadence, :jsonb, null: false, default: {}
  end
end