summaryrefslogtreecommitdiff
path: root/db/migrate/20210423054022_create_dast_site_profiles_pipelines.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210423054022_create_dast_site_profiles_pipelines.rb')
-rw-r--r--db/migrate/20210423054022_create_dast_site_profiles_pipelines.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20210423054022_create_dast_site_profiles_pipelines.rb b/db/migrate/20210423054022_create_dast_site_profiles_pipelines.rb
deleted file mode 100644
index 80b97ff5afe..00000000000
--- a/db/migrate/20210423054022_create_dast_site_profiles_pipelines.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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