summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190625184066_remove_sentry_from_application_settings.rb
blob: 427df343193a059facb1a782686a5ecdf76c7604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 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.

class RemoveSentryFromApplicationSettings < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  SENTRY_ENABLED_COLUMNS = [
    :sentry_enabled,
    :clientside_sentry_enabled
  ].freeze

  SENTRY_DSN_COLUMNS = [
    :sentry_dsn,
    :clientside_sentry_dsn
  ].freeze

  disable_ddl_transaction!

  def up
    (SENTRY_ENABLED_COLUMNS + SENTRY_DSN_COLUMNS).each do |column|
      remove_column(:application_settings, column) if column_exists?(:application_settings, column)
    end
  end

  def down
    SENTRY_ENABLED_COLUMNS.each do |column|
      add_column_with_default(:application_settings, column, :boolean, default: false, allow_null: false) unless column_exists?(:application_settings, column)
    end

    SENTRY_DSN_COLUMNS.each do |column|
      add_column(:application_settings, column, :string) unless column_exists?(:application_settings, column)
    end
  end
end