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: 0fe3ada4c0dc5e0b4f3f08da59d750da13483353 (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: Gitlab::Json.dump(table_comment) 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