summaryrefslogtreecommitdiff
path: root/db/migrate/20210423054022_create_dast_site_profiles_pipelines.rb
blob: 80b97ff5afefe19e37c9984c92db9a81d45b307c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class CreateDastSiteProfilesPipelines < ActiveRecord::Migration[6.0]
  def up
    table_comment = { owner: 'group::dynamic analysis', description: 'Join table between DAST Site Profiles and CI Pipelines' }

    create_table :dast_site_profiles_pipelines, primary_key: [:dast_site_profile_id, :ci_pipeline_id], comment: Gitlab::Json.dump(table_comment) do |t|
      t.bigint :dast_site_profile_id, null: false
      t.bigint :ci_pipeline_id, null: false

      t.index :ci_pipeline_id, unique: true, name: :index_dast_site_profiles_pipelines_on_ci_pipeline_id
    end
  end

  def down
    drop_table :dast_site_profiles_pipelines
  end
end