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