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

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

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

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

  def down
    drop_table :dast_site_profiles_builds
  end
end