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/20230106142239_add_config_column_to_ci_runner_machines.rb')
-rw-r--r--db/migrate/20230106142239_add_config_column_to_ci_runner_machines.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/db/migrate/20230106142239_add_config_column_to_ci_runner_machines.rb b/db/migrate/20230106142239_add_config_column_to_ci_runner_machines.rb
deleted file mode 100644
index 29fee4d7b56..00000000000
--- a/db/migrate/20230106142239_add_config_column_to_ci_runner_machines.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# frozen_string_literal: true
-
-class AddConfigColumnToCiRunnerMachines < Gitlab::Database::Migration[2.1]
- enable_lock_retries!
-
- def change
- add_column :ci_runner_machines, :config, :jsonb, default: {}, null: false
- end
-end