summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210527131039_clean_up_rename_experiment_subjects_group_id_to_namespace_id.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210527131039_clean_up_rename_experiment_subjects_group_id_to_namespace_id.rb')
-rw-r--r--db/post_migrate/20210527131039_clean_up_rename_experiment_subjects_group_id_to_namespace_id.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/post_migrate/20210527131039_clean_up_rename_experiment_subjects_group_id_to_namespace_id.rb b/db/post_migrate/20210527131039_clean_up_rename_experiment_subjects_group_id_to_namespace_id.rb
deleted file mode 100644
index 6dec99c8acd..00000000000
--- a/db/post_migrate/20210527131039_clean_up_rename_experiment_subjects_group_id_to_namespace_id.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class CleanUpRenameExperimentSubjectsGroupIdToNamespaceId < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers::V2
-
- disable_ddl_transaction!
-
- def up
- cleanup_concurrent_column_rename :experiment_subjects, :group_id, :namespace_id
- end
-
- def down
- undo_cleanup_concurrent_column_rename :experiment_subjects, :group_id, :namespace_id
- end
-end