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/20220421141342_add_allowed_plans_to_ci_runners.rb')
-rw-r--r--db/migrate/20220421141342_add_allowed_plans_to_ci_runners.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/db/migrate/20220421141342_add_allowed_plans_to_ci_runners.rb b/db/migrate/20220421141342_add_allowed_plans_to_ci_runners.rb
deleted file mode 100644
index 46da684cfe2..00000000000
--- a/db/migrate/20220421141342_add_allowed_plans_to_ci_runners.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# frozen_string_literal: true
-
-class AddAllowedPlansToCiRunners < Gitlab::Database::Migration[1.0]
- def change
- # rubocop:disable Migration/AddLimitToTextColumns
- add_column :ci_runners, :allowed_plans, :text, array: true, null: false, default: []
- # rubocop:enable Migration/AddLimitToTextColumns
- end
-end