summaryrefslogtreecommitdiff
path: root/db/migrate/20210604051330_create_dast_scanner_profiles_builds.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-20 13:49:51 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-20 13:49:51 +0000
commit71786ddc8e28fbd3cb3fcc4b3ff15e5962a1c82e (patch)
tree6a2d93ef3fb2d353bb7739e4b57e6541f51cdd71 /db/migrate/20210604051330_create_dast_scanner_profiles_builds.rb
parenta7253423e3403b8c08f8a161e5937e1488f5f407 (diff)
downloadgitlab-ce-71786ddc8e28fbd3cb3fcc4b3ff15e5962a1c82e.tar.gz
Add latest changes from gitlab-org/gitlab@15-9-stable-eev15.9.0-rc42
Diffstat (limited to 'db/migrate/20210604051330_create_dast_scanner_profiles_builds.rb')
-rw-r--r--db/migrate/20210604051330_create_dast_scanner_profiles_builds.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20210604051330_create_dast_scanner_profiles_builds.rb b/db/migrate/20210604051330_create_dast_scanner_profiles_builds.rb
deleted file mode 100644
index 0fe3ada4c0d..00000000000
--- a/db/migrate/20210604051330_create_dast_scanner_profiles_builds.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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