20 lines
560 B
Ruby
20 lines
560 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddGrafanaUrlToSettings < ActiveRecord::Migration[5.1]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
disable_ddl_transaction!
|
|
|
|
DOWNTIME = false
|
|
|
|
# rubocop:disable Migration/PreventStrings
|
|
def up
|
|
add_column_with_default(:application_settings, :grafana_url, :string, # rubocop:disable Migration/AddColumnWithDefault
|
|
default: '/-/grafana', allow_null: false)
|
|
end
|
|
# rubocop:enable Migration/PreventStrings
|
|
|
|
def down
|
|
remove_column(:application_settings, :grafana_url)
|
|
end
|
|
end
|