summaryrefslogtreecommitdiff
path: root/db/post_migrate/20191030193050_remove_pendo_from_application_settings.rb
blob: 33bbe6f8ea7bc4c39b61603100e9989e10aa3176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class RemovePendoFromApplicationSettings < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  DOWNTIME = false

  def up
    remove_column :application_settings, :pendo_enabled
    remove_column :application_settings, :pendo_url
  end

  def down
    add_column_with_default :application_settings, :pendo_enabled, :boolean, default: false, allow_null: false
    add_column :application_settings, :pendo_url, :string, limit: 255
  end
end