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/20190918121135_add_cleanup_status_reason_to_cluster.rb')
-rw-r--r--db/migrate/20190918121135_add_cleanup_status_reason_to_cluster.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrate/20190918121135_add_cleanup_status_reason_to_cluster.rb b/db/migrate/20190918121135_add_cleanup_status_reason_to_cluster.rb
deleted file mode 100644
index 85293ebbe86..00000000000
--- a/db/migrate/20190918121135_add_cleanup_status_reason_to_cluster.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-# frozen_string_literal: true
-
-class AddCleanupStatusReasonToCluster < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- def change
- add_column :clusters, :cleanup_status_reason, :text # rubocop:disable Migration/AddLimitToTextColumns
- end
-end