Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20230106184809_create_dast_profiles_tags.rb')
-rw-r--r--db/migrate/20230106184809_create_dast_profiles_tags.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20230106184809_create_dast_profiles_tags.rb b/db/migrate/20230106184809_create_dast_profiles_tags.rb
deleted file mode 100644
index f31eaea5fa8..00000000000
--- a/db/migrate/20230106184809_create_dast_profiles_tags.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class CreateDastProfilesTags < Gitlab::Database::Migration[2.1]
- def up
- create_table :dast_profiles_tags do |t|
- t.references :dast_profile, null: false, foreign_key: { on_delete: :cascade },
- index: { name: 'i_dast_profiles_tags_on_scanner_profiles_id' }
-
- t.bigint :tag_id, null: false
-
- t.index :tag_id, name: :index_dast_profiles_tags_on_tag_id
- end
- end
-
- def down
- drop_table :dast_profiles_tags
- end
-end