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/20230208110638_cleanup_ci_runner_machines_machine_xid_rename.rb')
-rw-r--r--db/post_migrate/20230208110638_cleanup_ci_runner_machines_machine_xid_rename.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/post_migrate/20230208110638_cleanup_ci_runner_machines_machine_xid_rename.rb b/db/post_migrate/20230208110638_cleanup_ci_runner_machines_machine_xid_rename.rb
deleted file mode 100644
index b596d7773ae..00000000000
--- a/db/post_migrate/20230208110638_cleanup_ci_runner_machines_machine_xid_rename.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class CleanupCiRunnerMachinesMachineXidRename < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- def up
- cleanup_concurrent_column_rename :ci_runner_machines, :machine_xid, :system_xid
- end
-
- def down
- undo_cleanup_concurrent_column_rename :ci_runner_machines, :machine_xid, :system_xid
- end
-end