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

20210807101446_add_cadence_to_dast_profile_schedules.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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