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/20200712235622_create_dast_site_profiles.rb')
-rw-r--r--db/migrate/20200712235622_create_dast_site_profiles.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/db/migrate/20200712235622_create_dast_site_profiles.rb b/db/migrate/20200712235622_create_dast_site_profiles.rb
deleted file mode 100644
index 593cccd450a..00000000000
--- a/db/migrate/20200712235622_create_dast_site_profiles.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-# frozen_string_literal: true
-
-class CreateDastSiteProfiles < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- with_lock_retries do
- create_table :dast_site_profiles do |t|
- t.references :project, foreign_key: { on_delete: :cascade }, null: false, index: false
- t.references :dast_site, foreign_key: { on_delete: :cascade }, null: false
- t.timestamps_with_timezone null: false
-
- t.text :name, null: false
- end
- end
-
- add_concurrent_index :dast_site_profiles, [:project_id, :name], unique: true
- add_text_limit :dast_site_profiles, :name, 255
- end
-
- def down
- drop_table :dast_site_profiles
- end
-end