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

20210818115613_add_index_project_id_on_dast_profile_schedule.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 392b335ab451c5e1377e75ef15c8c625b25ee0c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddIndexProjectIdOnDastProfileSchedule < ActiveRecord::Migration[6.1]
  # We disable these cops here because changing this index is safe. The table does not
  # have any data in it as it's behind a feature flag.
  # rubocop: disable Migration/AddIndex
  def change
    add_index :dast_profile_schedules, :project_id
  end
end