summaryrefslogtreecommitdiff
path: root/db/migrate/20200415160722_remove_not_null_lfs_objects_constraint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200415160722_remove_not_null_lfs_objects_constraint.rb')
-rw-r--r--db/migrate/20200415160722_remove_not_null_lfs_objects_constraint.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20200415160722_remove_not_null_lfs_objects_constraint.rb b/db/migrate/20200415160722_remove_not_null_lfs_objects_constraint.rb
deleted file mode 100644
index 58cfa8e8969..00000000000
--- a/db/migrate/20200415160722_remove_not_null_lfs_objects_constraint.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveNotNullLfsObjectsConstraint < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- with_lock_retries do
- execute <<~SQL
- ALTER TABLE lfs_objects DROP CONSTRAINT IF EXISTS lfs_objects_file_store_not_null;
- SQL
- end
- end
-
- def down
- # No-op
- end
-end