summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190404231137_remove_alternate_url_from_geo_nodes.rb
blob: 785ceb2fb28b014dbca6b58ebb27e9b7ca96baac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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