summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210218110552_remove_deprecated_ci_runner_column.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210218110552_remove_deprecated_ci_runner_column.rb')
-rw-r--r--db/post_migrate/20210218110552_remove_deprecated_ci_runner_column.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/post_migrate/20210218110552_remove_deprecated_ci_runner_column.rb b/db/post_migrate/20210218110552_remove_deprecated_ci_runner_column.rb
deleted file mode 100644
index 06fd900590b..00000000000
--- a/db/post_migrate/20210218110552_remove_deprecated_ci_runner_column.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveDeprecatedCiRunnerColumn < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- with_lock_retries do
- remove_column :ci_runners, :is_shared
- end
- end
-
- def down
- add_column :ci_runners, :is_shared, :boolean, default: false unless column_exists?(:ci_runners, :is_shared)
-
- add_concurrent_index :ci_runners, :is_shared
- end
-end