summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190404231137_remove_alternate_url_from_geo_nodes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20190404231137_remove_alternate_url_from_geo_nodes.rb')
-rw-r--r--db/post_migrate/20190404231137_remove_alternate_url_from_geo_nodes.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/post_migrate/20190404231137_remove_alternate_url_from_geo_nodes.rb b/db/post_migrate/20190404231137_remove_alternate_url_from_geo_nodes.rb
deleted file mode 100644
index 785ceb2fb28..00000000000
--- a/db/post_migrate/20190404231137_remove_alternate_url_from_geo_nodes.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-# We are reverting the feature that created this column. This is for anyone who
-# migrated while the feature still existed in master.
-class RemoveAlternateUrlFromGeoNodes < ActiveRecord::Migration[5.0]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- def up
- remove_column(:geo_nodes, :alternate_url) if column_exists?(:geo_nodes, :alternate_url)
- end
-
- def down
- add_column :geo_nodes, :alternate_url, :string
- end
-end