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

20210604051330_create_dast_scanner_profiles_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8a5f735f0d3a7ed566f6734cf7db1936f5da162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class CreateDastScannerProfilesBuilds < ActiveRecord::Migration[6.1]
  def up
    table_comment = { owner: 'group::dynamic analysis', description: 'Join table between DAST Scanner Profiles and CI Builds' }

    create_table :dast_scanner_profiles_builds, primary_key: [:dast_scanner_profile_id, :ci_build_id], comment: table_comment.to_json do |t|
      t.bigint :dast_scanner_profile_id, null: false
      t.bigint :ci_build_id, null: false

      t.index :ci_build_id, unique: true, name: :dast_scanner_profiles_builds_on_ci_build_id
    end
  end

  def down
    drop_table :dast_scanner_profiles_builds
  end
end