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/post_migrate/20200617001848_validate_store_not_null_constraint_uploads.rb')
-rw-r--r--db/post_migrate/20200617001848_validate_store_not_null_constraint_uploads.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/post_migrate/20200617001848_validate_store_not_null_constraint_uploads.rb b/db/post_migrate/20200617001848_validate_store_not_null_constraint_uploads.rb
deleted file mode 100644
index 83cb6cb3e85..00000000000
--- a/db/post_migrate/20200617001848_validate_store_not_null_constraint_uploads.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class ValidateStoreNotNullConstraintUploads < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- validate_check_constraint(:uploads, :check_5e9547379c)
- end
-
- def down
- # no-op
- end
-end