2019-07-03 12:09:51 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddGrafanaUrlToSettings < ActiveRecord::Migration[5.1]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
# rubocop:disable Migration/PreventStrings
|
2019-07-03 12:09:51 -04:00
|
|
|
def up
|
2020-05-15 11:08:04 -04:00
|
|
|
add_column_with_default(:application_settings, :grafana_url, :string, # rubocop:disable Migration/AddColumnWithDefault
|
2019-07-03 12:09:51 -04:00
|
|
|
default: '/-/grafana', allow_null: false)
|
|
|
|
end
|
2020-04-21 11:21:10 -04:00
|
|
|
# rubocop:enable Migration/PreventStrings
|
2019-07-03 12:09:51 -04:00
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column(:application_settings, :grafana_url)
|
|
|
|
end
|
|
|
|
end
|